]> www.infradead.org Git - users/sagi/libnvme.git/commitdiff
build: Use boolean type for docs-build default v1.0-rc4
authorDaniel Wagner <dwagner@suse.de>
Tue, 22 Feb 2022 17:09:45 +0000 (18:09 +0100)
committerDaniel Wagner <dwagner@suse.de>
Tue, 22 Feb 2022 17:09:45 +0000 (18:09 +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 f1bca656f06925427ad813c7289cc68544ddf12a..f5cac6eb69a07a38f62fa5d4f70becc560c5dd80 100644 (file)
@@ -3,7 +3,7 @@ option('pkgconfiglibdir', type : 'string', value : '', description : 'directory
 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')
 
 option('python', type : 'combo', choices : ['auto', 'true', 'false'], description : 'Generate libnvme python bindings')
 option('openssl', type : 'feature', value: 'auto', description : 'OpenSSL support')