commit: daad663fb7beafa540785994d14dade98ad03901 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Thu Feb 21 07:49:53 2019 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Thu Feb 21 07:52:27 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=daad663f
scripts/bootstrap-prefix: fix bootstrap on Solaris 10 mpfr needs gmp, so the version pinning hack needs slightly more work Closes: https://bugs.gentoo.org/678464 Signed-off-by: Fabian Groffen <grobian <AT> 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 cd833982af..fc2601f267 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -306,7 +306,7 @@ configure_toolchain() { # host compiler doesn't cope with the asm introduced # in mpfr-4, so force using an older one during # bootstrap for this target - compiler_stage1="<dev-libs/mpfr-4 ${compiler_stage1}" + compiler_stage1=${compiler_stage1/" dev-libs/mpfr "/" <dev- libs/mpfr-4 "} ;; esac ;;
