]> www.infradead.org Git - users/sagi/nvme-cli.git/commitdiff
build: Use boolean type for docs-build default v2.0-rc4
authorDaniel Wagner <dwagner@suse.de>
Tue, 22 Feb 2022 17:25:01 +0000 (18:25 +0100)
committerDaniel Wagner <dwagner@suse.de>
Tue, 22 Feb 2022 17:25:01 +0000 (18:25 +0100)
muon complains about the type used for the default value. As it a
boolean type use a boolean as value instead of a string value.

Signed-off-by: Daniel Wagner <dwagner@suse.de>
meson_options.txt

index 76e512aa9a271363b8e5c8e6d0ee4d9a021dac77..b7f1840b8f0d2785b9132fe68abf59df01fc4508 100644 (file)
@@ -4,4 +4,4 @@ option('systemddir', type : 'string', value : 'lib/systemd/', description : 'dir
 option('htmldir', type : 'string', value : '', description : 'directory for HTML documentation')
 
 option('docs', type : 'combo', choices : ['false', 'html', 'man', 'all'], description : 'install documentation')
-option('docs-build', type : 'boolean', value : 'false',  description : 'build documentation')
+option('docs-build', type : 'boolean', value : false,  description : 'build documentation')