commit: 6a100e41bd7c18939115d4709bd4d7f3deb5117c Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Sun May 5 08:13:34 2019 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Sun May 5 08:15:47 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=6a100e41
scripts/bootstrap-prefix: pick up SmartOS GCC7, bug #685082 As reported by Tim Boudreau, recent SmartOS uses GCC7. Don't do any cleverness with globbing for now. Closes: https://bugs.gentoo.org/685082 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> scripts/bootstrap-prefix.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 3c4f7dbde7..bd687483a5 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -2284,6 +2284,7 @@ EOF # OpenIndiana 151a5 [[ -d /usr/gnu/bin ]] && PATH="${PATH}:/usr/gnu/bin" # SmartOS + [[ -d /opt/local/gcc7/bin ]] && PATH="${PATH}:/opt/local/gcc7/bin" [[ -d /opt/local/gcc47/bin ]] && PATH="${PATH}:/opt/local/gcc47/bin" ;; *-darwin1*)
