From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 20531158086 for ; Thu, 30 Dec 2021 12:17:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0EE22E07A7; Thu, 30 Dec 2021 12:17:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA56BE07A5 for ; Thu, 30 Dec 2021 12:17:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 21FD63430F8 for ; Thu, 30 Dec 2021 12:17:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BB1A1C6 for ; Thu, 30 Dec 2021 12:17:49 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1640866605.99c4d68466e7f6c5f9e927eef423527778653e84.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 99c4d68466e7f6c5f9e927eef423527778653e84 X-VCS-Branch: master Date: Thu, 30 Dec 2021 12:17:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e623c4e7-72b6-4b22-adbe-a3f878ad270c X-Archives-Hash: 6a46dacab2b7165066b09d239443df8d commit: 99c4d68466e7f6c5f9e927eef423527778653e84 Author: Fabian Groffen gentoo org> AuthorDate: Thu Dec 30 12:16:45 2021 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Dec 30 12:16:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=99c4d684 scripts/bootstrap-prefix: don't use subshell for emerge -u system we don't have to restore C*FLAGS, this is the end of stage3 Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 643d163211..70599da63a 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -2190,10 +2190,8 @@ bootstrap_stage3() { # Portage should figure out itself what it needs to do, if anything. einfo "running emerge -uDNv system" estatus "stage3: emerge -uDNv system" - ( - unset CFLAGS CXXFLAGS CPPFLAGS - emerge --color n -uDNv system - ) || return 1 + unset CFLAGS CXXFLAGS CPPFLAGS + emerge --color n -uDNv system || return 1 # remove anything that we don't need (compilers most likely) einfo "running emerge --depclean"