From eaab1afdbf2e8e4d06a3647c529818e3d4209f5a Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Wed, 2 Aug 2017 18:59:17 +0200 Subject: [PATCH] Move private cache under cache directory --- lib/main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.sh b/lib/main.sh index 4a89ee0527..b91c3622e5 100644 --- a/lib/main.sh +++ b/lib/main.sh @@ -86,7 +86,7 @@ if [[ $USE_CCACHE != no ]]; then export PATH="/usr/lib/ccache:$PATH" # private ccache directory to avoid permission issues when using build script with "sudo" # see https://ccache.samba.org/manual.html#_sharing_a_cache for alternative solution - [[ $PRIVATE_CCACHE == yes ]] && export CCACHE_DIR=$DEST/ccache + [[ $PRIVATE_CCACHE == yes ]] && export CCACHE_DIR=$SRC/cache/ccache else CCACHE="" fi