From f86656d39689293ed4a95bda58c50eff9e19acd9 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 19 Nov 2015 17:47:34 +0100 Subject: [PATCH] Pmodules/modbuild: - define default number of parallel jobs here, so it can be overwritten in the build-block --- Pmodules/modbuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Pmodules/modbuild b/Pmodules/modbuild index 730b88c..be2ce5f 100755 --- a/Pmodules/modbuild +++ b/Pmodules/modbuild @@ -2,7 +2,7 @@ #set -x -# The directory where the programm is installed will be added to PATH and +# The directory where this programm is installed will be added to PATH and # to the search path of BASH libraries. declare -r mydir=$(dirname "$0") @@ -163,6 +163,10 @@ declare -r OS=$(uname -s) # # parse arguments # + +# number of parallel make jobs +declare -i JOBS=3 + debug_on='no' force_rebuild='no' dry_run='no'