take out the use of %jobs
authorStephan Kulow <coolo@suse.de>
Wed, 23 Feb 2011 10:59:43 +0000 (11:59 +0100)
committerMichael Andres <ma@suse.de>
Tue, 1 Mar 2011 12:29:13 +0000 (13:29 +0100)
Signed-off-by: Michael Andres <ma@suse.de>
libzypp-bindings.spec.cmake
package/libzypp-bindings.changes

index 5e1562c..3697e65 100644 (file)
@@ -40,7 +40,8 @@ cmake -DCMAKE_INSTALL_PREFIX=%{prefix} \
       -DCMAKE_BUILD_TYPE=Release \
       -DCMAKE_SKIP_RPATH=1 \
       ..
-make %{?jobs:-j %jobs}
+# the swig compile jobs take a lot of memory, so don't use %jobs here
+make -j1
 
 %check
 cd build
index c3bd88f..327ca10 100644 (file)
@@ -1,4 +1,9 @@
 -------------------------------------------------------------------
+Wed Feb 23 10:59:25 UTC 2011 - coolo@novell.com
+
+- disable use of %jobs to avoid swapping during compilation
+
+-------------------------------------------------------------------
 Wed Dec 22 10:00:27 CET 2010 - ma@suse.de
 
 - Use FIND_PROGRAM to detect readlink path.