summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2020-04-03 18:03:32 +0100
committerPhilip Withnall <withnall@endlessm.com>2020-04-03 18:03:32 +0100
commitc0ed9f6c0b6800e7d35812b0015fea7c8863f2b1 (patch)
treea6479e1b64d2b3eb565f1aa1b2ce20c8c86e8551
parentb1756860a964dacf02bea9144962578c3f13355f (diff)
downloadlibgdata-c0ed9f6c0b6800e7d35812b0015fea7c8863f2b1.tar.gz
build: Remove default values from descriptions in meson_options.txt
People should be able to get these from meson itself, or by reading `meson_options.txt`. Putting them in the description strings is just going to lead to that going out of sync with the actual options. Spotted by Debarshi Ray in !23. Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--meson_options.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt
index b1ba2df1..19bfd95c 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -21,12 +21,12 @@ option('oauth1',
option('always_build_tests',
type: 'boolean',
value: true,
- description: 'Enable always building tests (default: true)')
+ description: 'Enable always building tests')
option('installed_tests',
type: 'boolean',
value: false,
- description: 'Install test programs (default: false)')
+ description: 'Install test programs')
option('man',
type: 'boolean',
@@ -36,7 +36,7 @@ option('man',
option('gtk_doc',
type: 'boolean',
value: false,
- description: 'use gtk-doc to build documentation (default: false)')
+ description: 'use gtk-doc to build documentation')
option('introspection',
type: 'boolean',