commit: ee38c91b0b63968dcc026b167523842e8cb26fc8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 17:26:45 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 17:26:45 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=ee38c91b
bootstrap-prefix.sh: try coreutils 8.32 for bootstrap
Fixed a build failure in #gentoo-prefix when someone
was attempting w/ FreeBSD.
Signed-off-by: Sam James <sam <AT> gentoo.org>
scripts/bootstrap-prefix.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 9bd38260ff..a9b5635c4c 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1362,7 +1362,7 @@ bootstrap_coreutils() {
# 8.16 is the last version released as tar.gz
# 8.18 is necessary for macOS High Sierra (darwin17) and converted
# to tar.gz for this case
- bootstrap_gnu coreutils 8.30 || \
+ bootstrap_gnu coreutils 8.32 || bootstrap_gnu coreutils 8.30 || \
bootstrap_gnu coreutils 8.16 || bootstrap_gnu coreutils 8.17
}