summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Goergens <matthias.goergens@gmail.com>2023-04-07 14:48:00 +0800
committerNikolaus Rath <Nikolaus@rath.org>2023-04-07 14:01:16 +0100
commit7555d032a21e5bc9accd27e93d16acf32b6c2d7d (patch)
treed05348af2319e8ab63c22891bb678af1e35463a8
parent10f29159bd30fb3322b91a275b134ffd757cd424 (diff)
downloadfuse-7555d032a21e5bc9accd27e93d16acf32b6c2d7d.tar.gz
Fix meson deprecation warning
Also for rest of CI
-rwxr-xr-xtest/ci-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ci-build.sh b/test/ci-build.sh
index 71508d9..28ff0d8 100755
--- a/test/ci-build.sh
+++ b/test/ci-build.sh
@@ -43,7 +43,7 @@ for CC in gcc gcc-9 gcc-10 clang; do
else
build_opts=''
fi
- meson -D werror=true ${build_opts} "${SOURCE_DIR}" || (cat meson-logs/meson-log.txt; false)
+ meson setup -D werror=true ${build_opts} "${SOURCE_DIR}" || (cat meson-logs/meson-log.txt; false)
ninja
sudo chown root:root util/fusermount3
@@ -65,7 +65,7 @@ sanitized_build()
# b_lundef=false is required to work around clang
# bug, cf. https://groups.google.com/forum/#!topic/mesonbuild/tgEdAXIIdC4
- meson -D b_sanitize=${san} -D b_lundef=false -D werror=true\
+ meson setup -D b_sanitize=${san} -D b_lundef=false -D werror=true\
${additonal_option} "${SOURCE_DIR}" \
|| (cat meson-logs/meson-log.txt; false)
ninja