From 1e450f44702c4dbf10e90e863fbceb21fcdd6565 Mon Sep 17 00:00:00 2001 From: Roberto Ricci Date: Tue, 30 Aug 2022 18:26:31 +0200 Subject: [PATCH] xbps-src: don't export CCACHE_COMPRESS=1 Compression is enabled by default since ccache 4.0 and this variable prevents disabling it through a config file (useful e.g. on compressed filesystems). --- xbps-src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbps-src b/xbps-src index f93f5c5827fd..ba8c92b15c4c 100755 --- a/xbps-src +++ b/xbps-src @@ -679,7 +679,7 @@ if [ "$XBPS_CCACHE" ]; then export CCACHE_DIR="$XBPS_HOSTDIR/ccache" # Avoid not using cached files just due to compiler mtime # changes when e.g. bootstrapping - export CCACHE_COMPILERCHECK=content CCACHE_COMPRESS=1 + export CCACHE_COMPILERCHECK=content export PATH="$CCACHEPATH:$PATH" mkdir -p $CCACHE_DIR fi