From dd1c1135741057c91e8d018be9ec4d43968b0e64 Mon Sep 17 00:00:00 2001 From: Jia Tan Date: Wed, 18 Jan 2023 21:51:43 +0800 Subject: [PATCH] CI: Enable --config-cache in autotool builds. If CFLAGS are set in a build, the cache must be cleared with "make distclean", or by deleting the cache file. --- build-aux/ci_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/ci_build.sh b/build-aux/ci_build.sh index e2c09cdb..2d0f8643 100755 --- a/build-aux/ci_build.sh +++ b/build-aux/ci_build.sh @@ -158,7 +158,7 @@ if [ "$PHASE" = "all" ] || [ "$PHASE" = "build" ]; then fi # Run configure script - "$SRC_DIR"/configure --enable-werror --enable-checks=$CHECK_TYPE $EXTRA_OPTIONS + "$SRC_DIR"/configure --enable-werror --enable-checks=$CHECK_TYPE $EXTRA_OPTIONS --config-cache # Build the project make