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 4CA4D15808B for ; Sat, 17 Feb 2024 10:18:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 885D3E2A2C; Sat, 17 Feb 2024 10:18:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 657A1E2A2C for ; Sat, 17 Feb 2024 10:18:27 +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 46ADB33BF28 for ; Sat, 17 Feb 2024 10:18:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D27013DB for ; Sat, 17 Feb 2024 10:18:24 +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: <1708165033.e66a8e81b12473d92c7fadb361feffb2aa127d9e.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: e66a8e81b12473d92c7fadb361feffb2aa127d9e X-VCS-Branch: master Date: Sat, 17 Feb 2024 10:18:24 +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: 1ff680fe-6a07-4d24-bdad-3472fbb81715 X-Archives-Hash: 3f71e0e7dcff3c90ff7947cd6844e398 commit: e66a8e81b12473d92c7fadb361feffb2aa127d9e Author: Fabian Groffen gentoo org> AuthorDate: Sat Feb 17 10:17:13 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Feb 17 10:17:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=e66a8e81 scripts/bootstrap-prefix: catch any riscv tuple #923410 Thanks Julián. Bug: https://bugs.gentoo.org/923410 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 86ec75ee9f..27ea905467 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -385,7 +385,7 @@ bootstrap_profile() { i*86-pc-linux-gnu) profile=${profile_linux/ARCH/x86} ;; - riscv64-pc-linux-gnu) + riscv64-*-linux-gnu) profile=${profile_linux/ARCH/riscv} profile=${profile/17.0/20.0/rv64gc/lp64d} ;;