commit: 86c70718a8531e139bf1401cf762932f82d10b87
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 09:36:35 2017 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 09:36:48 2017 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=86c70718
scripts/bootstrap-prefix: add profile support for macOS High Sierra
scripts/bootstrap-prefix.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index b290cc90d7..7131ea7641 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -359,11 +359,11 @@ bootstrap_setup() {
rev=${CHOST##*darwin}
profile="prefix/darwin/macos/10.$((rev - 4))/x86"
;;
- i*86-apple-darwin1[0123])
+ i*86-apple-darwin1[01234567])
rev=${CHOST##*darwin}
profile="prefix/darwin/macos/10.$((rev - 4))/x86"
;;
- x86_64-apple-darwin9|x86_64-apple-darwin1[0123456])
+ x86_64-apple-darwin9|x86_64-apple-darwin1[01234567])
rev=${CHOST##*darwin}
profile="prefix/darwin/macos/10.$((rev - 4))/x64"
;;