summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2014-08-29 16:52:06 +0200
committerMartin Stransky <stransky@anakreon.cz>2014-08-29 16:52:06 +0200
commit4c7d8aa8649b98e382684d866faf173f21235e6f (patch)
treec90153c5aa02a8868eb2ac3781a5a6ff1fa3ac88
parentMerge branch 'master' of ssh://pkgs.fedoraproject.org/firefox (diff)
downloadlibrewolf-fedora-ff-4c7d8aa8649b98e382684d866faf173f21235e6f.tar.gz
librewolf-fedora-ff-4c7d8aa8649b98e382684d866faf173f21235e6f.tar.bz2
librewolf-fedora-ff-4c7d8aa8649b98e382684d866faf173f21235e6f.zip
Installation workaround
-rw-r--r--firefox.spec7
1 files changed, 6 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index fc6fcca..d52f45c 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -303,7 +303,7 @@ echo "ac_add_options --with-arch=armv7-a" >> .mozconfig
echo "ac_add_options --with-float-abi=hard" >> .mozconfig
echo "ac_add_options --with-fpu=vfpv3-d16" >> .mozconfig
echo "ac_add_options --disable-elf-hack" >> .mozconfig
-#echo "ac_add_options --disable-ion" >> .mozconfig
+echo "ac_add_options --disable-ion" >> .mozconfig
#echo "ac_add_options --disable-yarr-jit" >> .mozconfig
%endif
%ifarch armv7hnl
@@ -330,6 +330,11 @@ echo "ac_add_options --disable-webrtc" >> .mozconfig
echo "ac_add_options --disable-crashreporter" >> .mozconfig
%endif
+# Workaround - installation crash
+%ifarch %{ix86}
+echo "ac_add_options --disable-ion" >> .mozconfig
+%endif
+
#---------------------------------------------------------------------
%build
bgstack15