From b845c2fd3b820d95a43d8e7c05083dd3852056f4 Mon Sep 17 00:00:00 2001 From: Erik Skultety Date: Wed, 25 Jan 2023 13:22:49 +0100 Subject: [PATCH] ci: build.sh: Use 'meson setup' explicitly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Even though 'setup' is assumed when no other command is given, we're being explicit in our GitLab recipes, so do the same for the local build.sh script too. Signed-off-by: Erik Skultety Reviewed-by: Daniel P. Berrangé --- ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.sh b/ci/build.sh index 3fa28eafa8..c7cba6ffa8 100644 --- a/ci/build.sh +++ b/ci/build.sh @@ -8,7 +8,7 @@ export VIR_TEST_DEBUG=1 # populated at build time from the Dockerfile. A typical use case would # be to pass options to trigger cross-compilation -meson build --werror $MESON_OPTS $CI_MESON_ARGS || \ +meson setup build --werror $MESON_OPTS $CI_MESON_ARGS || \ (cat build/meson-logs/meson-log.txt && exit 1) ninja -C build $CI_NINJA_ARGS