From 59263bbcd3e4f5eaffe7d200c4cad2a361008e48 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Tue, 22 Feb 2022 18:25:01 +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 76e512aa9a..b7f1840b8f 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')