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 327F915800F for ; Sun, 19 Feb 2023 19:31:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 645BBE094A; Sun, 19 Feb 2023 19:31:08 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 4F5EFE094A for ; Sun, 19 Feb 2023 19:31:08 +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 510FF33BEF5 for ; Sun, 19 Feb 2023 19:31:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EED58AA for ; Sun, 19 Feb 2023 19:31:05 +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: <1676835055.d4ff29b30952ca957b58b5878550f5d23f908dbf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/go-module.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d4ff29b30952ca957b58b5878550f5d23f908dbf X-VCS-Branch: master Date: Sun, 19 Feb 2023 19:31:05 +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: 044273fc-65b0-465e-a23e-2eaca9c3329a X-Archives-Hash: 190fe89e8f146d462436cc77cbd3f0bb commit: d4ff29b30952ca957b58b5878550f5d23f908dbf Author: Sam James gentoo org> AuthorDate: Sun Feb 19 19:27:09 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 19 19:30:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4ff29b3 go-module.eclass: use tc-endian from toolchain-funcs.eclass matoro reports that any Go packages fail on ppc64 right now as USE=big-endian is not an implicit USE flag. Switch to tc-endian from toolchain-funcs.eclass instead. Signed-off-by: Sam James gentoo.org> eclass/go-module.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 5703b4fd8810..bcdd521619ac 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -352,7 +352,7 @@ go-module_setup_proxy() { # - Otherwise do a normal unpack. go-module_src_unpack() { if use amd64 || use arm || use arm64 || - ( use ppc64 && ! use big-endian ) || use s390 || use x86; then + ( use ppc64 && [[ $(tc-endian) == "little" ]] ) || use s390 || use x86; then GOFLAGS="-buildmode=pie ${GOFLAGS}" fi GOFLAGS="${GOFLAGS} -p=$(makeopts_jobs)"