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 ACFAB158086 for ; Thu, 4 Nov 2021 23:29:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B089DE086C; Thu, 4 Nov 2021 23:29:12 +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 B137FE086C for ; Thu, 4 Nov 2021 23:29:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9813F342B36 for ; Thu, 4 Nov 2021 23:29:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1ED6683 for ; Thu, 4 Nov 2021 23:29:06 +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: <1636068540.a21d106400cb57ad52244c29975e439d4301a716.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: a21d106400cb57ad52244c29975e439d4301a716 X-VCS-Branch: master Date: Thu, 4 Nov 2021 23:29:06 +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: 2e7a850a-c491-478f-bb33-bfd191d295e7 X-Archives-Hash: f1e6f2458b317cfd293b50727b6e8024 commit: a21d106400cb57ad52244c29975e439d4301a716 Author: Brad Laue brad-x com> AuthorDate: Thu Nov 4 23:15:01 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Nov 4 23:29:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a21d1064 Use --deep and --newuse on final @system build To capture dependency updates and build with updated USE flags prior to emerge -e system - will avoid potential unresolved dependency situations. [sam: ... and avoid needing to rbeuild stuff just after we've built everything *again.*] Closes: https://github.com/gentoo/prefix/pull/4 Signed-off-by: Sam James gentoo.org> scripts/bootstrap-prefix.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index cbe4aa6543..44d8935c1f 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -2162,10 +2162,10 @@ bootstrap_stage3() { # Avoid glib compiling for Cocoa libs if it finds them, since we're # still with an old llvm that may not understand the system headers # very well on Darwin (-DGNUSTEP_BASE_VERSION hack) - einfo "running emerge -u system" - estatus "stage3: emerge -u system" + einfo "running emerge -uDNav system" + estatus "stage3: emerge -uDNav system" CPPFLAGS="-DGNUSTEP_BASE_VERSION" \ - CFLAGS= CXXFLAGS= emerge --color n -u -v 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"