From 3a1bc6c6226d240b544058065382e2546018caa8 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Tue, 22 Feb 2022 18:09:45 +0100 Subject: [PATCH] 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 --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index f1bca656..f5cac6eb 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -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')