From patchwork Tue Feb 22 12:51:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5261 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4K2zbS1RSFz3xgk for ; Tue, 22 Feb 2022 12:52:36 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4K2zZt5Y6cz5YB; Tue, 22 Feb 2022 12:52:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4K2zZt5D6Fz32MJ; Tue, 22 Feb 2022 12:52:06 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4K2zZj0PWfz32Mf for ; Tue, 22 Feb 2022 12:51:57 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4K2zZh47KLz2RB; Tue, 22 Feb 2022 12:51:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1645534316; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Xl5GkXXO2pwgIEWd6bhBL1cPrlhMLwBtfNnplouN+NY=; b=pC5PnWpqf0neyDgSwm5yUv91EoUfjZeVn7c3FIy0NrkjPPaZw+jxSa1UjOg8vVplnnySW4 6fquGRxnQBb1nSEnAKEJY1XnJFPsIpKwLa5D4duJHZthjcU9s+zfuW8qiw8FvoqlCUfpkN uimihepqRZIqVu81Kq7ue9yoDsmj1ibI8va6dTGm9rWo8W9eGa5PYziQo/48cmKozJfoXo dErUXXGdL11Ci0EhoRuJGTAPw9RO2jtGclbK1C1acvL9Ur0Gyqjv6vtNzETJzmHRzjwqhX 4uAMqKADE73BIFNBPrbiNDLh7m+x2J5hUfurbOO3Z31Sd7egHmoro2nTXnUhMQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1645534316; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Xl5GkXXO2pwgIEWd6bhBL1cPrlhMLwBtfNnplouN+NY=; b=sUzKOIOMiNXzwHUfvGa+ejEsc0aUrIpBJ9KI8GqZkyqFmtyA2Ox+WZfHnCGcm6xUsYUtfF 1irPMcV9HcZBD2Cw== 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> References: <20220222125135.1211290-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" 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() {