Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Tue, 20 Nov 2018 08:37:51
Message-Id: 1542703036.7b447d8c44a11f40342d312ffa3e0ab2b06b12cf.grobian@gentoo
1 commit: 7b447d8c44a11f40342d312ffa3e0ab2b06b12cf
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 20 08:37:16 2018 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 20 08:37:16 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=7b447d8c
7
8 scripts/bootstrap-prefix: support macOS 10.14 Mojave (darwin18)
9
10 Bug: https://bugs.gentoo.org/671546
11 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
12
13 scripts/bootstrap-prefix.sh | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
17 index dc3f37bf78..cdcb8346d1 100755
18 --- a/scripts/bootstrap-prefix.sh
19 +++ b/scripts/bootstrap-prefix.sh
20 @@ -384,11 +384,11 @@ bootstrap_setup() {
21 rev=${CHOST##*darwin}
22 profile="prefix/darwin/macos/10.$((rev - 4))/x86"
23 ;;
24 - i*86-apple-darwin1[01234567])
25 + i*86-apple-darwin1[012345678])
26 rev=${CHOST##*darwin}
27 profile="prefix/darwin/macos/10.$((rev - 4))/x86"
28 ;;
29 - x86_64-apple-darwin9|x86_64-apple-darwin1[01234567])
30 + x86_64-apple-darwin9|x86_64-apple-darwin1[012345678])
31 rev=${CHOST##*darwin}
32 profile="prefix/darwin/macos/10.$((rev - 4))/x64"
33 ;;