From: Daniel Weismüller Date: Fri, 22 Jan 2016 11:10:19 +0000 (+0100) Subject: cmake: Disable parallelism X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92e4521572f0a5a6411ce74a7a70b9b65dcebb26;p=people%2Fms%2Fipfire-2.x.git cmake: Disable parallelism Building cmake uses a high amount of memory (>2G) and fails to build on my system. Using less processes reduces memory usage and lets the build succeed. Signed-off-by: Daniel Weismüller Signed-off-by: Michael Tremer --- diff --git a/lfs/cmake b/lfs/cmake index e3d211910c..a9ada50ca8 100644 --- a/lfs/cmake +++ b/lfs/cmake @@ -32,9 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) -ifeq "$(MACHINE)" "armv5tel" - MAKETUNING = -j2 -endif +MAKETUNING = -j2 ############################################################################### # Top-level Rules