Skip to content

Commit 59263bb

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 <dwagner@suse.de>
1 parent efa3775 commit 59263bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson_options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ option('systemddir', type : 'string', value : 'lib/systemd/', description : 'dir
44
option('htmldir', type : 'string', value : '', description : 'directory for HTML documentation')
55

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

0 commit comments

Comments
 (0)