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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 08B6C1581B9 for ; Tue, 30 Sep 2025 07:36:54 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id DD9BB340EAF for ; Tue, 30 Sep 2025 07:36:53 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CD2BE1103CB; Tue, 30 Sep 2025 07:36:52 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id C409B1103CB for ; Tue, 30 Sep 2025 07:36:52 +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 7841C340E9A for ; Tue, 30 Sep 2025 07:36:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8AD5334E6 for ; Tue, 30 Sep 2025 07:36:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1759217759.3a6efa4d363d76bf1a2d1756a16cf5dbcad223e8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/musl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/musl/musl-1.2.5-r3.ebuild sys-libs/musl/musl-1.2.5-r5.ebuild sys-libs/musl/musl-9999.ebuild X-VCS-Directories: sys-libs/musl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3a6efa4d363d76bf1a2d1756a16cf5dbcad223e8 X-VCS-Branch: master Date: Tue, 30 Sep 2025 07:36:50 +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: 4ca414aa-ef10-4e88-ade2-d4ad22be884d X-Archives-Hash: b8a47cfe450b805ba4acd64602f024ac commit: 3a6efa4d363d76bf1a2d1756a16cf5dbcad223e8 Author: Sam James gentoo org> AuthorDate: Tue Sep 30 07:34:52 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 30 07:35:59 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a6efa4d sys-libs/musl: don't run sanity-check for cross Closes: https://bugs.gentoo.org/962749 Signed-off-by: Sam James gentoo.org> sys-libs/musl/musl-1.2.5-r3.ebuild | 1 + sys-libs/musl/musl-1.2.5-r5.ebuild | 1 + sys-libs/musl/musl-9999.ebuild | 1 + 3 files changed, 3 insertions(+) diff --git a/sys-libs/musl/musl-1.2.5-r3.ebuild b/sys-libs/musl/musl-1.2.5-r3.ebuild index 89ff4c509940..696eb362147a 100644 --- a/sys-libs/musl/musl-1.2.5-r3.ebuild +++ b/sys-libs/musl/musl-1.2.5-r3.ebuild @@ -246,6 +246,7 @@ pkg_preinst() { [[ -n ${ROOT} ]] && return 0 [[ -d ${ED}/usr/$(get_libdir) ]] || return 0 + target_is_not_host && return 0 musl_sanity_check } diff --git a/sys-libs/musl/musl-1.2.5-r5.ebuild b/sys-libs/musl/musl-1.2.5-r5.ebuild index b9e116b380d9..4c95aa75e69c 100644 --- a/sys-libs/musl/musl-1.2.5-r5.ebuild +++ b/sys-libs/musl/musl-1.2.5-r5.ebuild @@ -250,6 +250,7 @@ pkg_preinst() { [[ -n ${ROOT} ]] && return 0 [[ -d ${ED}/usr/$(get_libdir) ]] || return 0 + target_is_not_host && return 0 musl_sanity_check } diff --git a/sys-libs/musl/musl-9999.ebuild b/sys-libs/musl/musl-9999.ebuild index 0971b7d9133c..ff2e8d40a78d 100644 --- a/sys-libs/musl/musl-9999.ebuild +++ b/sys-libs/musl/musl-9999.ebuild @@ -240,6 +240,7 @@ pkg_preinst() { [[ -n ${ROOT} ]] && return 0 [[ -d ${ED}/usr/$(get_libdir) ]] || return 0 + target_is_not_host && return 0 musl_sanity_check }