From: Matthias Goergens Date: Fri, 7 Apr 2023 06:48:00 +0000 (+0800) Subject: Fix meson deprecation warning X-Git-Tag: fuse-3.15.0~23 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7555d032a21e5bc9accd27e93d16acf32b6c2d7d;p=qemu-gpiodev%2Flibfuse.git Fix meson deprecation warning Also for rest of CI --- 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