]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
make.sh: Do not throw away any error messages when setting ccache size
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 22 Feb 2022 12:51:21 +0000 (12:51 +0000)
committerPeter Müller <peter.mueller@ipfire.org>
Tue, 22 Feb 2022 19:41:38 +0000 (19:41 +0000)
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 <michael.tremer@ipfire.org>
make.sh

diff --git a/make.sh b/make.sh
index 8b968137e0f67138fb340455bd3e8eb6f0308ff2..86e36d41daa1240b693bd294da86d308e428cf48 100755 (executable)
--- 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() {