diff options
author | Jacob Floyd <cognifloyd@gmail.com> | 2020-12-31 16:15:36 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2020-12-31 16:15:36 +0100 |
commit | c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693 (patch) | |
tree | 5db17281af73b33fd4ab2de287554db1fafd04da /scripts | |
parent | scripts/bootstrap-prefix: add some darwin-related changes (diff) | |
download | prefix-c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693.tar.gz prefix-c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693.tar.bz2 prefix-c4d7697f3e19dd3a788e212d1ca0cbc57f4b0693.zip |
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 <cognifloyd@gmail.com>
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap-prefix.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |