From: Erik Skultety Date: Thu, 2 Feb 2023 15:40:37 +0000 (+0100) Subject: ci: build.sh: Always assume -Dsystem=true X-Git-Tag: v9.7.0-rc1~139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed1a0a63cee62bea9036bd6529cc0bff3208693a;p=thirdparty%2Flibvirt.git ci: build.sh: Always assume -Dsystem=true There's no harm in always building in system mode, i.e. setting the right paths. Signed-off-by: Erik Skultety Reviewed-by: Daniel P. Berrangé --- diff --git a/ci/build.sh b/ci/build.sh index c7cba6ffa8..f6db4d2a7f 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 setup build --werror $MESON_OPTS $CI_MESON_ARGS || \ +meson setup build --werror -Dsystem=true $MESON_OPTS $CI_MESON_ARGS || \ (cat build/meson-logs/meson-log.txt && exit 1) ninja -C build $CI_NINJA_ARGS