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 32291158043 for ; Tue, 16 Apr 2024 07:18:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A936E2A03; Tue, 16 Apr 2024 07:18:41 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5AB83E2A03 for ; Tue, 16 Apr 2024 07:18:41 +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 70DCC3433C0 for ; Tue, 16 Apr 2024 07:18:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC12616B9 for ; Tue, 16 Apr 2024 07:18:38 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1713251863.0a2aae49a360a5424cbbad9c2c672fe356bfd2ab.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-115.9.1.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 0a2aae49a360a5424cbbad9c2c672fe356bfd2ab X-VCS-Branch: master Date: Tue, 16 Apr 2024 07:18:38 +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: 5c9058ae-298e-4ece-836b-7008866b0183 X-Archives-Hash: 5f0e2768a692be4be90bb353a015d31b commit: 0a2aae49a360a5424cbbad9c2c672fe356bfd2ab Author: Yixun Lan gentoo org> AuthorDate: Tue Apr 16 07:14:20 2024 +0000 Commit: Yixun Lan gentoo org> CommitDate: Tue Apr 16 07:17:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2aae49 www-client/firefox: '--disable-elf-hack' is not recognized on riscv - fix 115.9.1, tested on Pioneer Box (riscv64) Closes: https://bugs.gentoo.org/930046 Signed-off-by: Yixun Lan gentoo.org> www-client/firefox/firefox-115.9.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www-client/firefox/firefox-115.9.1.ebuild b/www-client/firefox/firefox-115.9.1.ebuild index c433643b1f37..d07acf7df8f4 100644 --- a/www-client/firefox/firefox-115.9.1.ebuild +++ b/www-client/firefox/firefox-115.9.1.ebuild @@ -1062,8 +1062,8 @@ src_configure() { # Solution: Disable build system's elf-hack completely, and add "-z,pack-relative-relocs" # manually with gcc. # - # elf-hack configure option isn't available on ppc64, #916259, #929244. - if use ppc64; then + # elf-hack configure option isn't available on ppc64/riscv, #916259, #929244, #930046. + if use ppc64 || use riscv ; then :; else mozconfig_add_options_ac 'elf-hack disabled' --disable-elf-hack