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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BCB8615815E for ; Mon, 5 Feb 2024 19:51:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0A81E2A5C; Mon, 5 Feb 2024 19:51:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A4929E2A5C for ; Mon, 5 Feb 2024 19:51:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6C6C0343082 for ; Mon, 5 Feb 2024 19:51:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D02B7358 for ; Mon, 5 Feb 2024 19:51:34 +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: <1707162647.24f011b46fa26a9e15153dd45a4be3ea5be46ca7.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: 24f011b46fa26a9e15153dd45a4be3ea5be46ca7 X-VCS-Branch: master Date: Mon, 5 Feb 2024 19:51:34 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8e64283a-8e42-4fe0-9f08-f1e33fc9948c X-Archives-Hash: 55b9e9ea8abe1504c71964598f978bbb commit: 24f011b46fa26a9e15153dd45a4be3ea5be46ca7 Author: Fabian Groffen gentoo org> AuthorDate: Mon Feb 5 19:50:47 2024 +0000 Commit: Fabian Groffen gentoo 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 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,"