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 <[email protected]>
  • Loading branch information
igaw committed Feb 22, 2022
1 parent efa3775 commit 59263bb
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 @@ -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')

0 comments on commit 59263bb

Please sign in to comment.