From: Arne Fitzenreiter Date: Mon, 18 Dec 2017 15:48:13 +0000 (+0100) Subject: make.sh: lowering parallel buildprocesses X-Git-Tag: v2.19-core118~3^2~74 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=cbcc135126e366542edb53567be5d4ececcf3104 make.sh: lowering parallel buildprocesses higher values raise the system load but not speedup the build Signed-off-by: Arne Fitzenreiter --- diff --git a/make.sh b/make.sh index dadc87f0ce..781590794c 100755 --- a/make.sh +++ b/make.sh @@ -208,7 +208,7 @@ configure_build() { local mem_max=$(( ${HOST_MEM} / 192 )) local processors="$(system_processors)" - local cpu_max=$(( ${processors} * 2 )) + local cpu_max=$(( ${processors} + 1 )) local parallelism if [ ${mem_max} -lt ${cpu_max} ]; then