summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2022-05-15 20:22:33 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2023-06-12 11:01:58 +0200
commit573c0dc13406be6575cb9177d8fe818a45426ba8 (patch)
treed7a98b27210dd6773802dcbf7904399bdc65d185 /meson.build
parentmeson: bump required version to 0.54.0 (diff)
downloadsystemd-573c0dc13406be6575cb9177d8fe818a45426ba8.tar.xz
systemd-573c0dc13406be6575cb9177d8fe818a45426ba8.zip
meson: bump required version to 0.55.0
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 3a714238d4..c6942a89ab 100644
--- a/meson.build
+++ b/meson.build
@@ -10,7 +10,7 @@ project('systemd', 'c',
'localstatedir=/var',
'warning_level=2',
],
- meson_version : '>= 0.54.0',
+ meson_version : '>= 0.55.0',
)
libsystemd_version = '0.36.0'
@@ -735,7 +735,7 @@ foreach prog : progs
'/usr/sbin/' + prog[0],
'/sbin/' + prog[0],
required: false)
- path = exe.found() ? exe.path() : prog[1]
+ path = exe.found() ? exe.full_path() : prog[1]
endif
name = prog.length() > 2 ? prog[2] : prog[0].to_upper()
conf.set_quoted(name, path)
@@ -1123,7 +1123,7 @@ else
r = find_program('clang', required : bpf_framework_required, version : '>= 10.0.0')
clang_found = r.found()
if clang_found
- clang = r.path()
+ clang = r.full_path()
endif
else
clang_found = true