summaryrefslogtreecommitdiff
path: root/www-client/firefox/firefox-115.9.1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-04-15 12:04:03 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-04-15 12:04:03 +0100
commit7fa8a1e3f149eea4c844c47cfe26136ed7614c58 (patch)
treee514d1b9999d088064bee1e34a3a3c500d6d7a07 /www-client/firefox/firefox-115.9.1.ebuild
parentd993571e2ee444d08f4e9e90d493ee37338657e3 (diff)
gentoo auto-resync : 15:04:2024 - 12:04:02
Diffstat (limited to 'www-client/firefox/firefox-115.9.1.ebuild')
-rw-r--r--www-client/firefox/firefox-115.9.1.ebuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/www-client/firefox/firefox-115.9.1.ebuild b/www-client/firefox/firefox-115.9.1.ebuild
index 2216b95968a4..c433643b1f37 100644
--- a/www-client/firefox/firefox-115.9.1.ebuild
+++ b/www-client/firefox/firefox-115.9.1.ebuild
@@ -1061,7 +1061,13 @@ src_configure() {
# With Firefox-115esr elf-hack=relr isn't available (only in rapid).
# Solution: Disable build system's elf-hack completely, and add "-z,pack-relative-relocs"
# manually with gcc.
- mozconfig_add_options_ac 'elf-hack disabled' --disable-elf-hack
+ #
+ # elf-hack configure option isn't available on ppc64, #916259, #929244.
+ if use ppc64; then
+ :;
+ else
+ mozconfig_add_options_ac 'elf-hack disabled' --disable-elf-hack
+ fi
if use amd64 || use x86 ; then
! use clang && append-ldflags "-z,pack-relative-relocs"