From: Michael Tremer Date: Tue, 8 Feb 2022 12:17:17 +0000 (+0000) Subject: make.sh: Do not throw away any error messages when setting ccache size X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=986ee2282fba5bdd382a0020a3663e42fc63f9fc;p=people%2Fms%2Fipfire-2.x.git make.sh: Do not throw away any error messages when setting ccache size This is the first time we will try to enter the chroot environment and when setting up QEMU fails, we won't see any errors. Signed-off-by: Michael Tremer --- diff --git a/make.sh b/make.sh index 8b968137e0..86e36d41da 100755 --- a/make.sh +++ b/make.sh @@ -547,7 +547,7 @@ prepareenv() { esac # Setup ccache cache size - enterchroot ccache --max-size="${CCACHE_CACHE_SIZE}" >/dev/null + enterchroot ccache --max-size="${CCACHE_CACHE_SIZE}" } enterchroot() {