Skip to content

Commit

Permalink
build: Use boolean type for docs-build default
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
igaw committed Feb 22, 2022
1 parent 8521937 commit 3a1bc6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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')

0 comments on commit 3a1bc6c

Please sign in to comment.