From: Arne Fitzenreiter Date: Thu, 1 Jul 2021 06:39:13 +0000 (+0200) Subject: make.sh: fix CCACHE path at toolchain build X-Git-Tag: v2.27-core159~79 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=4301024b82b35dbd31ba6868355311f8e12a07b4 make.sh: fix CCACHE path at toolchain build Signed-off-by: Arne Fitzenreiter --- diff --git a/make.sh b/make.sh index 2d89cf998a..321e87c5da 100755 --- a/make.sh +++ b/make.sh @@ -669,7 +669,7 @@ lfsmake1() { cd $BASEDIR/lfs && env -i \ PATH="${TOOLS_DIR}/ccache/bin:${TOOLS_DIR}/bin:$PATH" \ - CCACHE_DIR="${CCACHE_DIR}" \ + CCACHE_DIR="${CCACHE_DIR}"/${BUILD_ARCH}/${TOOLCHAINVER} \ CCACHE_TEMPDIR="${CCACHE_TEMPDIR}" \ CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \ CFLAGS="${CFLAGS}" \