From: Daniel Wagner Date: Tue, 22 Feb 2022 17:25:01 +0000 (+0100) Subject: build: Use boolean type for docs-build default X-Git-Tag: v2.0-rc4 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=59263bbcd3e4;p=users%2Fsagi%2Fnvme-cli.git 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 --- diff --git a/meson_options.txt b/meson_options.txt index 76e512aa..b7f1840b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -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')