summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2018-12-17 10:35:21 +0100
committerMartin Stransky <stransky@redhat.com>2018-12-17 10:35:21 +0100
commitbd27a67ed9166bb58562e2d255909406ed7c889d (patch)
treed8e5c583cb438960c87741848d267b934021e1e6
parentEnable arm (diff)
downloadlibrewolf-fedora-ff-bd27a67ed9166bb58562e2d255909406ed7c889d.tar.gz
librewolf-fedora-ff-bd27a67ed9166bb58562e2d255909406ed7c889d.tar.bz2
librewolf-fedora-ff-bd27a67ed9166bb58562e2d255909406ed7c889d.zip
Disable make -j2 on arm
-rw-r--r--firefox.spec2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index 1f6969d..5eddde9 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -530,7 +530,7 @@ echo "ac_add_options MOZ_PGO=1" >> .mozconfig
MOZ_SMP_FLAGS=-j1
# On x86_64 architectures, Mozilla can build up to 4 jobs at once in parallel,
# however builds tend to fail on other arches when building in parallel.
-%ifarch %{ix86} %{arm}
+%ifarch %{ix86}
[ -z "$RPM_BUILD_NCPUS" ] && \
RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
bgstack15