From: Thomas Weißschuh Date: Mon, 26 Feb 2024 19:01:45 +0000 (+0100) Subject: meson: avoid future-deprecated feature X-Git-Tag: v2.42-start~515 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b837ab02711d1a9352232ed2ba6ffbd47c201446;p=thirdparty%2Futil-linux.git meson: avoid future-deprecated feature Avoid the following message from meson: NOTICE: Future-deprecated features used: * 1.1.0: {'"boolean option" keyword argument "value" of type str'} Signed-off-by: Thomas Weißschuh --- diff --git a/meson_options.txt b/meson_options.txt index 138862657..7b8cf3f35 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -222,8 +222,8 @@ option('vendordir', option('pamlibdir', type : 'string', description : 'directory for PAM modules') option('lastlog-compat-symlink', type : 'boolean', - value : 'false', + value : false, description : 'create lastlog compat symlink') option('login-lastlogin', type : 'boolean', - value : 'false', + value : false, description : 'program login writes lastlog entries')