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 EFBBE158086 for ; Sat, 13 Nov 2021 11:06:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1913EE0A49; Sat, 13 Nov 2021 11:06:09 +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 2F759E0A49 for ; Sat, 13 Nov 2021 11:06:07 +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 0D4EA342E0E for ; Sat, 13 Nov 2021 11:06:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D7F8175 for ; Sat, 13 Nov 2021 11:06:04 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1636801489.503cfcdf2f49a3b450d5828b1b3ad0d70ac0688e.sam@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: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 503cfcdf2f49a3b450d5828b1b3ad0d70ac0688e X-VCS-Branch: master Date: Sat, 13 Nov 2021 11:06:04 +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: 781368f6-3760-4da9-9bb7-545a792fdd25 X-Archives-Hash: 10ee8cb097b9d498a3f3d3fd241a4906 commit: 503cfcdf2f49a3b450d5828b1b3ad0d70ac0688e Author: Sam James gentoo org> AuthorDate: Sat Nov 13 11:04:49 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 13 11:04:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=503cfcdf Revert "scripts/bootstrap-prefix.sh: don't unset *FLAGS for stage3 @system" Need to discuss this more with grobian, but I'd misunderstood where we do this (it's _before_ the -e @system, not _after_, so it's not like it's just before the user might update their system anyway). coreutils (and possibly libtasn1) are still broken but I'm not convinced this is the right fix after grobian@ raised concerns. Will revisit shortly but reverting for now to avoid problems. This reverts commit a3175e08822394188b112dc5e23475e876cd603e. Bug: https://github.com/gentoo/prefix/pull/5 Signed-off-by: Sam James gentoo.org> scripts/bootstrap-prefix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index ece81d3791..65f56ab99b 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -2171,7 +2171,7 @@ bootstrap_stage3() { einfo "running emerge -uDNav system" estatus "stage3: emerge -uDNav system" CPPFLAGS="-DGNUSTEP_BASE_VERSION" \ - emerge --color n -uDNav system || return 1 + CFLAGS= CXXFLAGS= emerge --color n -uDNav system || return 1 # remove anything that we don't need (compilers most likely) einfo "running emerge --depclean"