From: Michael Tremer Date: Fri, 5 Jul 2024 09:42:20 +0000 (+0000) Subject: make.sh: Mount the log directory for the correct architecture X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=de35befbdc81b9e9a0d324c512ea7d9bc13d9197;p=people%2Fms%2Fipfire-2.x.git make.sh: Mount the log directory for the correct architecture Signed-off-by: Michael Tremer --- diff --git a/make.sh b/make.sh index 9169a4db1..0671387ac 100755 --- a/make.sh +++ b/make.sh @@ -501,9 +501,11 @@ prepareenv() { mount --bind -o ro "${BASEDIR}/html" "${BUILD_DIR}/usr/src/html" mount --bind -o ro "${BASEDIR}/langs" "${BUILD_DIR}/usr/src/langs" mount --bind -o ro "${BASEDIR}/lfs" "${BUILD_DIR}/usr/src/lfs" - mount --bind "${BASEDIR}/log" "${BUILD_DIR}/usr/src/log" mount --bind -o ro "${BASEDIR}/src" "${BUILD_DIR}/usr/src/src" + # Mount the log directory + mount --bind "${LOG_DIR}" "${BUILD_DIR}/usr/src/log" + # Mount the ccache mount --bind "${CCACHE_DIR}" "${BUILD_DIR}/usr/src/ccache"