summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2018-06-06 12:58:57 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2018-07-05 10:37:35 +0200
commit6496437e80bec63120c0c144c2951c31836dc31d (patch)
tree480284a8e8c5848cbbcd558592d98d9163f796f9
parente98e08594c822b7d8bd7959ef2ef7edbfec491e5 (diff)
meson: Remove '(default: xxx)' from option description
'meson configure' will show the current value of an option, specifying the default value in the option description does not add much to that output. Signed-off-by: Christophe Fergeau <cfergeau@redhat.com> Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
-rw-r--r--meson_options.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 3d04b4d..915a9df 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -2,37 +2,37 @@ option('alignment-checks',
type : 'boolean',
value : false,
yield : true,
- description : 'Enable runtime checks for cast alignment (default=false)')
+ description : 'Enable runtime checks for cast alignment')
option('extra-checks',
type : 'boolean',
value : false,
yield : true,
- description : 'Enable extra checks on code (default=false)')
+ description : 'Enable extra checks on code')
option('celt051',
type : 'combo',
choices : ['true', 'false', 'auto'],
value : 'auto',
- description: 'Enable celt051 audio codec (default=auto)')
+ description: 'Enable celt051 audio codec')
option('opus',
type : 'combo',
choices : ['true', 'false', 'auto'],
- description: 'Enable Opus audio codec (default=true)')
+ description: 'Enable Opus audio codec')
option('python-checks',
type : 'boolean',
value : true,
- description : 'Enable checks for Python modules needed to build from git (default=true)')
+ description : 'Enable checks for Python modules needed to build from git')
option('manual',
type : 'boolean',
value : true,
yield : true,
- description : 'Build SPICE manual (default=true)')
+ description : 'Build SPICE manual')
option('generate-code',
type : 'combo',
choices : ['all', 'server', 'client'],
- description : 'Which code should be built (default=all)')
+ description : 'Which code should be built')