summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Toso <victortoso@gnome.org>2021-03-30 11:58:34 +0200
committerVictor Toso <victortoso@gnome.org>2021-03-30 11:59:23 +0200
commitbb3c59449930c22d69e0c7021c24776fb9c54a75 (patch)
treea3899d3de4ac3e86a81ed46cd3fe6c3c1cfab348
parent016449aa995c2244f337aeee04afc7ac5b34fd9d (diff)
downloadgrilo-plugins-bb3c59449930c22d69e0c7021c24776fb9c54a75.tar.gz
build-sys: remove 'auto' from help combo options
'auto' was defaulting to 'yes' but there is not check to be make in auto so we can simplify this with yes/no
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 141201f..f513222 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -21,4 +21,4 @@ option('enable-tmdb', type: 'combo', choices: [ 'auto', 'yes', 'no' ], value: 'a
option('enable-tracker', type: 'combo', choices: [ 'auto', 'yes', 'no' ], value: 'auto', description: 'Enable Tracker plugin (DEPRECATED)')
option('enable-tracker3', type: 'combo', choices: [ 'auto', 'yes', 'no' ], value: 'auto', description: 'Enable Tracker3 plugin')
option('enable-youtube', type: 'combo', choices: [ 'auto', 'yes', 'no' ], value: 'auto', description: 'Enable YouTube plugin')
-option('help', type: 'combo', choices: [ 'auto', 'yes', 'no' ], value: 'auto', description: 'Build examples developers')
+option('help', type: 'combo', choices: [ 'yes', 'no' ], value: 'yes', description: 'Build examples developers')