From 7555d032a21e5bc9accd27e93d16acf32b6c2d7d Mon Sep 17 00:00:00 2001 From: Matthias Goergens Date: Fri, 7 Apr 2023 14:48:00 +0800 Subject: Fix meson deprecation warning Also for rest of CI --- test/ci-build.sh | 4 ++-- 1 file 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 -- cgit v1.2.1