commit: 24f011b46fa26a9e15153dd45a4be3ea5be46ca7
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 5 19:50:47 2024 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Feb 5 19:50:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=24f011b4
scripts/bootstrap-prefix: fix Darwin 9 x86 profile typo
x32 is something different from x86, not sure why I got confused
Signed-off-by: Fabian Groffen <grobian <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 c59ff0cd9c..676fe5ec0a 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -369,7 +369,7 @@ bootstrap_profile() {
;;
i*86-apple-darwin9)
rev=${CHOST##*darwin}
- profile="prefix/darwin/macos/10.$((rev - 4))/x32"
+ profile="prefix/darwin/macos/10.$((rev - 4))/x86"
;;
i*86-apple-darwin1[578])
eerror "REMOVED ARCH: this 32-bit MacOS architecture
was removed,"