summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-09-13 19:51:45 +0200
committerMartin Stransky <stransky@redhat.com>2020-09-13 19:51:45 +0200
commit0316481767201776461518ade09478fb7497ae40 (patch)
treeb422fe3975c700b761163b58fd5eedac3c5ba4d4
parentbig endian fix (diff)
downloadlibrewolf-fedora-ff-0316481767201776461518ade09478fb7497ae40.tar.gz
librewolf-fedora-ff-0316481767201776461518ade09478fb7497ae40.tar.bz2
librewolf-fedora-ff-0316481767201776461518ade09478fb7497ae40.zip
Build fixes
-rw-r--r--firefox.spec10
1 files changed, 8 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index 3be8583..e18b4c4 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -5,11 +5,17 @@
%global build_with_asan 0
# Temporary disabled, filed as rhbz#1862012
-# ExcludeArch: ppc64le
+%if 0%{?fedora} == 33
+ExcludeArch: ppc64le
+%endif
# Disabled due to https://pagure.io/fedora-infrastructure/issue/7581
# ExcludeArch: s390x
# Temporary disabled, filed as rhbz#1872111
# ExcludeArch: aarch64
+# Temporary disabled, filed as rhbz#1878519
+%if 0%{?fedora} > 32
+ExcludeArch: armv7hl
+%endif
%global enable_mozilla_crashreporter 0
%ifarch x86_64 %{ix86}
@@ -472,7 +478,7 @@ echo "ac_add_options --without-system-libvpx" >> .mozconfig
%endif
%ifarch s390 s390x
-echo "ac_add_options --disable-ion" >> .mozconfig
+echo "ac_add_options --disable-jit" >> .mozconfig
%endif
%if %{build_with_asan}
bgstack15