summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-09-19 11:58:54 +0100
committerTim-Philipp Müller <tim@centricular.com>2018-09-19 11:58:54 +0100
commitb71b9ec934ce0117119d6db13ed7a70069e16db8 (patch)
treeb122d24c32453c0a2697ad197bff3db8926254fc
parent71a35e7c8b82b163a2370aeaf4dd62800cf90a7c (diff)
meson: fix missing closing bracket in option descriptions
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 4ba86f33..45801c15 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -24,9 +24,9 @@ option('nls', type : 'feature', value : 'auto', yield: true,
option('orc', type : 'feature', value : 'auto', yield : true)
option('tests', type : 'feature', value : 'auto', yield : true)
option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
- description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases')
+ description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
- description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases')
+ description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
# Common options
option('package-name', type : 'string', yield : true,