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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15D651382C5 for ; Thu, 31 Dec 2020 15:16:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42A66E0870; Thu, 31 Dec 2020 15:16:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 29463E0870 for ; Thu, 31 Dec 2020 15:16:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9C763409ED for ; Thu, 31 Dec 2020 15:16:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D99153 for ; Thu, 31 Dec 2020 15:16:13 +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: <1609427736.c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693.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: c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693 X-VCS-Branch: master Date: Thu, 31 Dec 2020 15:16:13 +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: af455c2d-1c5f-4ad9-a9fe-71afd1cb063e X-Archives-Hash: 2e4d9f25a4e9d038650a2b88d08efdeb commit: c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693 Author: Jacob Floyd gmail com> AuthorDate: Thu Dec 31 15:15:36 2020 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Dec 31 15:15:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=c4d7697f scripts/bootstrap-prefix: add gnuconfig to stage2 llvm deps Newer llvm requires gnuconfig, so bootstrap it in stage2. Bug: https://bugs.gentoo.org/758167 Signed-off-by: Jacob Floyd gmail.com> Signed-off-by: Fabian Groffen 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 1943a3929b..c58ae8fcf1 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -225,7 +225,7 @@ configure_toolchain() { compiler_type="clang" local ccvers="$( (unset CHOST; gcc --version 2>/dev/null) )" local mycc= - local llvm_deps="dev-util/ninja" + local llvm_deps="dev-util/ninja sys-devel/gnuconfig" case "${ccvers}" in *"Apple clang version "*) vers=${ccvers#*Apple clang version }