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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 30E7C158015 for ; Fri, 29 Dec 2023 09:45:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 724022BC019; Fri, 29 Dec 2023 09:45:54 +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 3CB222BC019 for ; Fri, 29 Dec 2023 09:45:54 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D4D3335D72 for ; Fri, 29 Dec 2023 09:45:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 100EDEE8 for ; Fri, 29 Dec 2023 09:45:52 +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: <1703843138.a709bd77db53b483e1b2eb4d77816acfd4f9770a.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: a709bd77db53b483e1b2eb4d77816acfd4f9770a X-VCS-Branch: master Date: Fri, 29 Dec 2023 09:45:52 +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: 884d37fc-4f48-4ee0-9e18-cfe81acc46d7 X-Archives-Hash: 361122ec66b3c2d1ceea7f80a4788cbb commit: a709bd77db53b483e1b2eb4d77816acfd4f9770a Author: fosslinux aussies space> AuthorDate: Wed Dec 27 11:27:09 2023 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Dec 29 09:45:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a709bd77 scripts/bootstrap-prefix: fix arm RAP profile (again) arm uses a sub-dir for the target, the main is still called arm Closes: https://bugs.gentoo.org/920437 Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 46c89d14c6..91e120360e 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -407,7 +407,8 @@ bootstrap_profile() { profile=${profile_linux/ARCH/arm64} ;; armv7*-pc-linux-gnu) - profile=${profile_linux/ARCH/arm7a} + profile=${profile_linux/ARCH/arm} + profile=${profile/17.0/17.0/armv7a} ;; x86_64-pc-solaris2.11) profile="prefix/sunos/solaris/5.11/x64"