diff options
author | Joonas Niilola <juippis@gentoo.org> | 2024-04-15 08:46:09 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-04-15 09:03:22 +0300 |
commit | 7186a2457d6ef4002a5baa6fcc359106bb2216d5 (patch) | |
tree | 33d968c12b9938c100f9cc76f7932679e31a0bcf /www-client | |
parent | gnome-base/gnome-core-libs: Stabilize 45.2 arm64, #928782 (diff) | |
download | gentoo-7186a2457d6ef4002a5baa6fcc359106bb2216d5.tar.gz gentoo-7186a2457d6ef4002a5baa6fcc359106bb2216d5.tar.bz2 gentoo-7186a2457d6ef4002a5baa6fcc359106bb2216d5.zip |
www-client/firefox: '--disable-elf-hack' is not recognized on ppc64
- fix 115.9.1.
Closes: https://bugs.gentoo.org/929244
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/firefox/firefox-115.9.1.ebuild | 8 |
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" |