summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec11
1 files changed, 11 insertions, 0 deletions
diff --git a/firefox.spec b/firefox.spec
index 6e13020..4defa6e 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -25,6 +25,12 @@
# https://bugzilla.redhat.com/show_bug.cgi?id=1897522
ExcludeArch: s390x
+# Exclude ARM due to
+# https://bugzilla.redhat.com/show_bug.cgi?id=1922599
+%if 0%{?fedora} > 33
+ExcludeArch: armv7hl
+%endif
+
# Temporary disable tests on Rawhide/arm/i686 due to failures
%if 0%{?fedora} > 33
%ifarch armv7hl
@@ -76,6 +82,11 @@ ExcludeArch: s390x
%global build_with_pgo 1
%endif
%endif
+# Disable PGO on Rawhide due to
+# https://bugzilla.redhat.com/show_bug.cgi?id=1922600
+%if 0%{?fedora} > 33
+%global build_with_pgo 0
+%endif
%if 0%{?flatpak}
%global build_with_pgo 0
%endif
bgstack15