aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2022-04-15 11:24:11 +0200
committerEli Schwartz <eschwartz93@gmail.com>2022-04-27 08:37:31 -0400
commite4d9ba5c9ecca494c028a81730b2c9a753801612 (patch)
tree51bd2194d7a019811ae9014277ab2be855fddc7d /mesonbuild
parent8ed151bbd786d2c52e6ea7b7cfe3147fc41ec041 (diff)
downloadmeson-e4d9ba5c9ecca494c028a81730b2c9a753801612.zip
meson-e4d9ba5c9ecca494c028a81730b2c9a753801612.tar.gz
meson-e4d9ba5c9ecca494c028a81730b2c9a753801612.tar.bz2
improve help for -Ddebug
"Debug" is not a very helpful help message. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/coredata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py
index b9a4828..162a01b 100644
--- a/mesonbuild/coredata.py
+++ b/mesonbuild/coredata.py
@@ -1222,7 +1222,7 @@ BUILTIN_CORE_OPTIONS: 'MutableKeyedOptionDictType' = OrderedDict([
(OptionKey('backend'), BuiltinOption(UserComboOption, 'Backend to use', 'ninja', choices=backendlist)),
(OptionKey('buildtype'), BuiltinOption(UserComboOption, 'Build type to use', 'debug',
choices=['plain', 'debug', 'debugoptimized', 'release', 'minsize', 'custom'])),
- (OptionKey('debug'), BuiltinOption(UserBooleanOption, 'Debug', True)),
+ (OptionKey('debug'), BuiltinOption(UserBooleanOption, 'Enable debug symbols and other information', True)),
(OptionKey('default_library'), BuiltinOption(UserComboOption, 'Default library type', 'shared', choices=['shared', 'static', 'both'],
yielding=False)),
(OptionKey('errorlogs'), BuiltinOption(UserBooleanOption, "Whether to print the logs from failing tests", True)),