[webkitgtk3] Run make with -j1 to let it successfully compile in brew

Tomas Popela tpopela at fedoraproject.org
Mon Sep 29 10:40:30 UTC 2014


commit 85c10ccf6da32fa0de7dde7d230448b3baa227fc
Author: Tomas Popela <tpopela at redhat.com>
Date:   Mon Sep 29 12:40:16 2014 +0200

    Run make with -j1 to let it successfully compile in brew

 webkitgtk3.spec |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/webkitgtk3.spec b/webkitgtk3.spec
index 8e042f0..c8427a6 100644
--- a/webkitgtk3.spec
+++ b/webkitgtk3.spec
@@ -131,7 +131,10 @@ mkdir -p DerivedSources/webkitdom/
 mkdir -p DerivedSources/InjectedBundle
 mkdir -p DerivedSources/Platform
 
-make %{_smp_mflags} V=1
+# Disable the parallel compilation as it fails to compile in brew.
+# https://bugs.webkit.org/show_bug.cgi?id=34846
+# make %{_smp_mflags} V=1
+make -j1 V=1
 
 %install
 make install DESTDIR=%{buildroot}
@@ -196,6 +199,7 @@ find $RPM_BUILD_ROOT%{_libdir} -name "*.la" -delete
 %changelog
 * Mon Sep 29 2014 Tomas Popela <tpopela at redhat.com> - 2.4.6-1
 - Update to 2.4.6
+- Run make with -j1 to let it successfully compile in brew
 
 * Tue Sep 02 2014 Tomas Popela <tpopela at redhat.com> - 2.4.5-4
 - Rebase the aarch64 patch


More information about the scm-commits mailing list