]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: bump required version to 0.56.0 26728/head
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 15 May 2022 18:36:34 +0000 (03:36 +0900)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 12 Jun 2023 09:01:58 +0000 (11:01 +0200)
meson.build
shell-completion/bash/meson.build

index c6942a89ab90b0cbbfdfb85ebc1072a92daf4f13..cadb7350004b9554c374a75c71b5f48f99486b90 100644 (file)
@@ -10,7 +10,7 @@ project('systemd', 'c',
                 'localstatedir=/var',
                 'warning_level=2',
         ],
-        meson_version : '>= 0.55.0',
+        meson_version : '>= 0.56.0',
        )
 
 libsystemd_version = '0.36.0'
index 5fe7611b71dad688eddb83963ac9954d2590bc05..24cb785e6beb95cff8dcd21a61b1a40413182785 100644 (file)
@@ -4,7 +4,7 @@ bashcompletiondir = get_option('bashcompletiondir')
 if bashcompletiondir == ''
         bash_completion = dependency('bash-completion', required : false)
         if bash_completion.found()
-                bashcompletiondir = bash_completion.get_pkgconfig_variable('completionsdir')
+                bashcompletiondir = bash_completion.get_variable(pkgconfig : 'completionsdir')
         else
                 bashcompletiondir = datadir / 'bash-completion/completions'
         endif