From aeeade8ef6c241ea425bcdc31147774ac240e4ec Mon Sep 17 00:00:00 2001 From: Sertonix Date: Thu, 25 Jul 2024 21:47:34 +0200 Subject: [PATCH] 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 --- meson_options.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 10a0a20..5e25ee8 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -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',