Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Thu, 31 Dec 2020 15:16:17
Message-Id: 1609427736.c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693.grobian@gentoo
1 commit: c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693
2 Author: Jacob Floyd <cognifloyd <AT> gmail <DOT> com>
3 AuthorDate: Thu Dec 31 15:15:36 2020 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 31 15:15:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=c4d7697f
7
8 scripts/bootstrap-prefix: add gnuconfig to stage2 llvm deps
9
10 Newer llvm requires gnuconfig, so bootstrap it in stage2.
11
12 Bug: https://bugs.gentoo.org/758167
13
14 Signed-off-by: Jacob Floyd <cognifloyd <AT> gmail.com>
15 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
16
17 scripts/bootstrap-prefix.sh | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
21 index 1943a3929b..c58ae8fcf1 100755
22 --- a/scripts/bootstrap-prefix.sh
23 +++ b/scripts/bootstrap-prefix.sh
24 @@ -225,7 +225,7 @@ configure_toolchain() {
25 compiler_type="clang"
26 local ccvers="$( (unset CHOST; gcc --version 2>/dev/null) )"
27 local mycc=
28 - local llvm_deps="dev-util/ninja"
29 + local llvm_deps="dev-util/ninja sys-devel/gnuconfig"
30 case "${ccvers}" in
31 *"Apple clang version "*)
32 vers=${ccvers#*Apple clang version }