From 00b3dd669014dab9256d1101d814e7e17fc31ef3 Mon Sep 17 00:00:00 2001 From: Kittywhiskers Van Gogh <63189531+kittywhiskers@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:37:09 +0530 Subject: [PATCH] ci: don't re-use config.cache when running configure script --- ci/dash/build_src.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/dash/build_src.sh b/ci/dash/build_src.sh index af1c970fb1..8fd4e0da12 100755 --- a/ci/dash/build_src.sh +++ b/ci/dash/build_src.sh @@ -45,11 +45,11 @@ rm -rf build-ci mkdir build-ci cd build-ci -../configure --cache-file=config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false) +../configure $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false) make distdir VERSION=$BUILD_TARGET cd dashcore-$BUILD_TARGET -./configure --cache-file=../config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false) +./configure $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false) make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && make $GOAL V=1 ; false )