summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2018-09-27 14:22:09 +0200
committerJan Horak <jhorak@redhat.com>2018-09-27 14:22:09 +0200
commit096e14bbcbcfa1596fa668e9ada843b81f746066 (patch)
tree0ece8388f9df4c056dd936144c7b7ad4772e96cb
parentEnabled DBus remote for all Gtk+ backends, Removed obsoleted patches (diff)
downloadlibrewolf-fedora-ff-096e14bbcbcfa1596fa668e9ada843b81f746066.tar.gz
librewolf-fedora-ff-096e14bbcbcfa1596fa668e9ada843b81f746066.tar.bz2
librewolf-fedora-ff-096e14bbcbcfa1596fa668e9ada843b81f746066.zip
Disable elfhack for fedora 29+ because of build failures
-rw-r--r--firefox.spec3
1 files changed, 3 insertions, 0 deletions
diff --git a/firefox.spec b/firefox.spec
index e85bcc8..07eb4cc 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -377,6 +377,9 @@ echo "ac_add_options --enable-system-ffi" >> .mozconfig
%ifarch %{arm}
echo "ac_add_options --disable-elf-hack" >> .mozconfig
%endif
+%if 0%{?fedora} > 28
+echo "ac_add_options --disable-elf-hack" >> .mozconfig
+%endif
%if %{?debug_build}
echo "ac_add_options --enable-debug" >> .mozconfig
bgstack15