]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: avoid future-deprecated feature
authorThomas Weißschuh <thomas@t-8ch.de>
Mon, 26 Feb 2024 19:01:45 +0000 (20:01 +0100)
committerThomas Weißschuh <thomas@t-8ch.de>
Mon, 26 Feb 2024 19:22:18 +0000 (20:22 +0100)
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 <thomas@t-8ch.de>
meson_options.txt

index 138862657b19af29ac24974aa452e283d429e7bc..7b8cf3f35f58344280d6c8549405b80a98fa332e 100644 (file)
@@ -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')