summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-03-11 11:45:48 +0100
committerMartin Stransky <stransky@redhat.com>2020-03-11 11:45:48 +0100
commite9028b364eab7597e530e51193ca42007ace79db (patch)
tree237c666ddf9f9fb2dc1c4e5cd1337ae4d00d6bd0
parentDisabled armv7hl due to build failures (diff)
downloadlibrewolf-fedora-ff-e9028b364eab7597e530e51193ca42007ace79db.tar.gz
librewolf-fedora-ff-e9028b364eab7597e530e51193ca42007ace79db.tar.bz2
librewolf-fedora-ff-e9028b364eab7597e530e51193ca42007ace79db.zip
disable arm builds with gcc 10 until bug 94050 is backported to Fedora
-rw-r--r--firefox.spec4
1 files changed, 3 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index 5a21dea..171059f 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -4,8 +4,10 @@
%global build_with_clang 0
%global build_with_asan 0
-# Disabled arm due to rhbz#1658940
+# disable arm builds with gcc 10 until bug 94050 is backported to Fedora
+%if 0%{?fedora} > 31
ExcludeArch: armv7hl
+%endif
# Disabled due to https://pagure.io/fedora-infrastructure/issue/7581
ExcludeArch: s390x
# Disabled due to neon build error
bgstack15