From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7F6611396D9 for ; Mon, 13 Nov 2017 14:38:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F3CFE0E4F; Mon, 13 Nov 2017 14:38:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 78BDDE0E4F for ; Mon, 13 Nov 2017 14:38:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39A5C33BE68 for ; Mon, 13 Nov 2017 14:38:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFA7F9AFC for ; Mon, 13 Nov 2017 14:38:49 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1510583514.5dcd55c9c1f1d474ef977c21e18759e6ac8e7857.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 5dcd55c9c1f1d474ef977c21e18759e6ac8e7857 X-VCS-Branch: master Date: Mon, 13 Nov 2017 14:38:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c21d13db-d8b8-463a-81c0-2301c940c95a X-Archives-Hash: 1837a0f1606deb2770baca0779c94187 commit: 5dcd55c9c1f1d474ef977c21e18759e6ac8e7857 Author: Fabian Groffen gentoo org> AuthorDate: Mon Nov 13 14:31:54 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Nov 13 14:31:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=5dcd55c9 scripts/bootstrap-prefix: bootstrap coreutils 8.28 for High Sierra scripts/bootstrap-prefix.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index c2bb5c1e26..f8eb310892 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1083,8 +1083,10 @@ bootstrap_grep() { bootstrap_coreutils() { # 8.12 for FreeBSD 9.1, bug #415439 # 8.16 is the last version released as tar.gz - bootstrap_gnu coreutils 8.16 || bootstrap_gnu coreutils 8.17 || \ - bootstrap_gnu coreutils 8.12 + # 8.18 is necessary for macOS High Sierra (darwin17) and converted + # to tar.gz for this case + bootstrap_gnu coreutils 8.28 || bootstrap_gnu coreutils 8.16 || \ + bootstrap_gnu coreutils 8.17 || bootstrap_gnu coreutils 8.12 } bootstrap_tar() {