From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id B29C9158B20 for ; Fri, 07 Feb 2025 20:20:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 78E21340C9C for ; Fri, 07 Feb 2025 20:20:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 4FBC01103CB; Fri, 07 Feb 2025 20:19:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3B9261103CB for ; Fri, 07 Feb 2025 20:19:58 +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 A5D46340C9C for ; Fri, 07 Feb 2025 20:19:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E56E2532 for ; Fri, 07 Feb 2025 20:19:56 +0000 (UTC) From: "Violet Purcell" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Violet Purcell" Message-ID: <1738959525.a2c44a4063e0f9252c311e3f59f33da4c8b46e59.vimproved@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-libs/gcompat/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-libs/gcompat/gcompat-1.1.0.ebuild X-VCS-Directories: sys-libs/gcompat/ X-VCS-Committer: vimproved X-VCS-Committer-Name: Violet Purcell X-VCS-Revision: a2c44a4063e0f9252c311e3f59f33da4c8b46e59 X-VCS-Branch: dev Date: Fri, 07 Feb 2025 20:19:56 +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: 9ca36105-e502-4e23-b888-b51cf7c3a299 X-Archives-Hash: 076d9598814631bc228d54479ce2c267 commit: a2c44a4063e0f9252c311e3f59f33da4c8b46e59 Author: Violet Purcell inventati org> AuthorDate: Fri Feb 7 20:18:45 2025 +0000 Commit: Violet Purcell inventati org> CommitDate: Fri Feb 7 20:18:45 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a2c44a40 sys-libs/gcompat: fix arm64 dynamic loader name logic Due to arm* being above arm64 in the switch statement, arm64 would end up with ld-linux-armhf.so.3 instead of ld-linux-aarch64.so.1. Move the arm64 case above so the correct dynamic loader name is used. Signed-off-by: Violet Purcell inventati.org> sys-libs/gcompat/gcompat-1.1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/gcompat/gcompat-1.1.0.ebuild b/sys-libs/gcompat/gcompat-1.1.0.ebuild index 947968198..b335fc851 100644 --- a/sys-libs/gcompat/gcompat-1.1.0.ebuild +++ b/sys-libs/gcompat/gcompat-1.1.0.ebuild @@ -26,8 +26,8 @@ get_loader_name() { case "$ABI" in x86) echo "ld-linux.so.2" ;; amd64) echo "ld-linux-x86-64.so.2" ;; - arm*) echo "ld-linux-armhf.so.3" ;; arm64) echo "ld-linux-aarch64.so.1" ;; + arm*) echo "ld-linux-armhf.so.3" ;; mips | powerpc | s390) echo "ld.so.1" ;; esac }