From 73453eb710a6023e9f196f5e907795ec9a90d6c2 Mon Sep 17 00:00:00 2001 From: Jabber Developer Date: Tue, 2 Sep 2025 15:10:03 +0200 Subject: [PATCH] build: add cache to ./configure with -C flag Add the -C flag to ./configure to enable caching, reducing redundant resource fetching during builds when packages and the machine remain unchanged. Caching may cause issues only if applied across different machines or if packages are modified, neither of which is the case during the build. --- ci-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-build.sh b/ci-build.sh index 82ff76ff..e0e2a551 100755 --- a/ci-build.sh +++ b/ci-build.sh @@ -144,7 +144,7 @@ do echo # shellcheck disable=SC2086 - ./configure $features $* + ./configure -C $features $* $MAKE CC="${CC}" $MAKE check