From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 36/50] make.sh: Do not throw away any error messages when setting ccache size Date: Tue, 22 Feb 2022 12:51:21 +0000 Message-ID: <20220222125135.1211290-37-michael.tremer@ipfire.org> In-Reply-To: <20220222125135.1211290-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5017811824570695590==" List-Id: --===============5017811824570695590== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit 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 --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 8b968137e..86e36d41d 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() { -- 2.30.2 --===============5017811824570695590==--