1
0
mirror of https://github.com/projectatomic/bubblewrap.git synced 2026-02-05 15:45:22 +01:00

meson: use boolean value for boolean options

string values for boolean options will be deprecated in a future version
of meson.

Signed-off-by: Sertonix <sertonix@posteo.net>
This commit is contained in:
Sertonix
2024-07-25 21:47:34 +02:00
parent 973fe36146
commit aeeade8ef6

View File

@@ -45,7 +45,7 @@ option(
'require_userns',
type : 'boolean',
description : 'require user namespaces by default when installed setuid',
value : 'false',
value : false,
)
option(
'selinux',
@@ -57,7 +57,7 @@ option(
'tests',
type : 'boolean',
description : 'build tests',
value : 'true',
value : true,
)
option(
'zsh_completion',