summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2008-12-09 17:13:33 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2008-12-09 17:13:33 +0000
commitedd27f3af530dd7f196176b040c3b9a70ef92eca (patch)
tree4fee6e12e9804f3e14af250ac67342fdf9c3915f
parentforce to -j1 to see if this helps the build (diff)
downloadlibrewolf-fedora-ff-edd27f3af530dd7f196176b040c3b9a70ef92eca.tar.gz
librewolf-fedora-ff-edd27f3af530dd7f196176b040c3b9a70ef92eca.tar.bz2
librewolf-fedora-ff-edd27f3af530dd7f196176b040c3b9a70ef92eca.zip
BR: autoconf213 to see if that helps
-rw-r--r--firefox.spec3
1 files changed, 1 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index 2e47a96..10bae4f 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -74,6 +74,7 @@ BuildRequires: libXrender-devel
BuildRequires: system-bookmarks
BuildRequires: startup-notification-devel
BuildRequires: gecko-devel-unstable = %{gecko_version}
+BuildRequires: autoconf213
Requires: desktop-file-utils >= %{desktop_file_utils_version}
Requires: gecko-libs = %{gecko_version}
@@ -133,13 +134,11 @@ export PREFIX='%{_prefix}'
export LIBDIR='%{_libdir}'
MOZ_SMP_FLAGS=-j1
-%if 0
%ifnarch ppc ppc64 s390 s390x
[ -z "$RPM_BUILD_NCPUS" ] && \
RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
[ "$RPM_BUILD_NCPUS" -gt 1 ] && MOZ_SMP_FLAGS=-j2
%endif
-%endif
INTERNAL_GECKO=%{internal_version}
MOZ_APP_DIR=%{_libdir}/%{name}-${INTERNAL_GECKO}
bgstack15