Skip to content

Commit

Permalink
Merge pull request #647 from sertonix/bool-options
Browse files Browse the repository at this point in the history
meson: use boolean value for boolean options
  • Loading branch information
smcv authored Sep 30, 2024
2 parents 2d38286 + aeeade8 commit 0f99752
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ option(
'require_userns',
type : 'boolean',
description : 'require user namespaces by default when installed setuid',
value : 'false',
value : false,
)
option(
'selinux',
Expand All @@ -57,7 +57,7 @@ option(
'tests',
type : 'boolean',
description : 'build tests',
value : 'true',
value : true,
)
option(
'zsh_completion',
Expand Down

0 comments on commit 0f99752

Please # to comment.