Skip to content

Commit 3a1bc6c

Browse files
committed
build: Use boolean type for docs-build default
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 <[email protected]>
1 parent 8521937 commit 3a1bc6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meson_options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ option('pkgconfiglibdir', type : 'string', value : '', description : 'directory
33
option('htmldir', type : 'string', value : '', description : 'directory for HTML documentation')
44

55
option('docs', type : 'combo', choices : ['false', 'html', 'man', 'all'], description : 'install documentation')
6-
option('docs-build', type : 'boolean', value : 'false', description : 'build documentation')
6+
option('docs-build', type : 'boolean', value : false, description : 'build documentation')
77

88
option('python', type : 'combo', choices : ['auto', 'true', 'false'], description : 'Generate libnvme python bindings')
99
option('openssl', type : 'feature', value: 'auto', description : 'OpenSSL support')

0 commit comments

Comments
 (0)