summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2019-12-09 19:06:05 +0100
committerMartin Stransky <stransky@redhat.com>2019-12-09 19:06:05 +0100
commitcb7dfd887c3a7dbba3f6117d158eb16ae37a01f1 (patch)
tree7ea1e5e11557af6645fac6183c653266bcf46627
parentMerge branch 'master' into f31 (diff)
parentEnable mozilla crashreporter on intel only (diff)
downloadlibrewolf-fedora-ff-cb7dfd887c3a7dbba3f6117d158eb16ae37a01f1.tar.gz
librewolf-fedora-ff-cb7dfd887c3a7dbba3f6117d158eb16ae37a01f1.tar.bz2
librewolf-fedora-ff-cb7dfd887c3a7dbba3f6117d158eb16ae37a01f1.zip
Merge branch 'master' into f31
-rw-r--r--firefox.spec8
1 files changed, 6 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index 4f59c8b..a63efe5 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -9,6 +9,12 @@ ExcludeArch: armv7hl
# Disabled due to https://pagure.io/fedora-infrastructure/issue/7581
ExcludeArch: s390x
+%ifarch x86_64 %{ix86}
+%global enable_mozilla_crashreporter 1
+%else
+%global enable_mozilla_crashreporter 0
+%endif
+
%global system_nss 1
%global system_ffi 1
%global system_libvpx 0
@@ -76,8 +82,6 @@ ExcludeArch: s390x
%bcond_without langpacks
-%global enable_mozilla_crashreporter 1
-
%if !%{release_build}
%global pre_tag .npgo
%endif
bgstack15