From 17f39b898b6874113439ad9c5d713f7c7aea2c5e 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 ccache enables compression by default since version 4.0. This variable is redundant and prevents disabling compression 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 f93f5c5827fd7d..ba8c92b15c4cbb 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