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: Mon, 13 Nov 2017 14:38:54
Message-Id: 1510583514.5dcd55c9c1f1d474ef977c21e18759e6ac8e7857.grobian@gentoo
1 commit: 5dcd55c9c1f1d474ef977c21e18759e6ac8e7857
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 13 14:31:54 2017 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 13 14:31:54 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=5dcd55c9
7
8 scripts/bootstrap-prefix: bootstrap coreutils 8.28 for High Sierra
9
10 scripts/bootstrap-prefix.sh | 6 ++++--
11 1 file changed, 4 insertions(+), 2 deletions(-)
12
13 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
14 index c2bb5c1e26..f8eb310892 100755
15 --- a/scripts/bootstrap-prefix.sh
16 +++ b/scripts/bootstrap-prefix.sh
17 @@ -1083,8 +1083,10 @@ bootstrap_grep() {
18 bootstrap_coreutils() {
19 # 8.12 for FreeBSD 9.1, bug #415439
20 # 8.16 is the last version released as tar.gz
21 - bootstrap_gnu coreutils 8.16 || bootstrap_gnu coreutils 8.17 || \
22 - bootstrap_gnu coreutils 8.12
23 + # 8.18 is necessary for macOS High Sierra (darwin17) and converted
24 + # to tar.gz for this case
25 + bootstrap_gnu coreutils 8.28 || bootstrap_gnu coreutils 8.16 || \
26 + bootstrap_gnu coreutils 8.17 || bootstrap_gnu coreutils 8.12
27 }
28
29 bootstrap_tar() {