commit: 7b447d8c44a11f40342d312ffa3e0ab2b06b12cf Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Tue Nov 20 08:37:16 2018 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Tue Nov 20 08:37:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=7b447d8c
scripts/bootstrap-prefix: support macOS 10.14 Mojave (darwin18) Bug: https://bugs.gentoo.org/671546 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> 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 dc3f37bf78..cdcb8346d1 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -384,11 +384,11 @@ bootstrap_setup() { rev=${CHOST##*darwin} profile="prefix/darwin/macos/10.$((rev - 4))/x86" ;; - i*86-apple-darwin1[01234567]) + i*86-apple-darwin1[012345678]) rev=${CHOST##*darwin} profile="prefix/darwin/macos/10.$((rev - 4))/x86" ;; - x86_64-apple-darwin9|x86_64-apple-darwin1[01234567]) + x86_64-apple-darwin9|x86_64-apple-darwin1[012345678]) rev=${CHOST##*darwin} profile="prefix/darwin/macos/10.$((rev - 4))/x64" ;;
