From 3b380e24b2ddf2bcc5febf3ebd65f84f3bf373c5 Mon Sep 17 00:00:00 2001 From: "moneromooo.monero" Date: Sat, 5 Nov 2016 09:54:02 +0000 Subject: [PATCH] Allow user to set number of parallel jobs --- get_libwallet_api.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh index ea1d8b1c..d72b071e 100755 --- a/get_libwallet_api.sh +++ b/get_libwallet_api.sh @@ -11,7 +11,9 @@ if [ -z $BUILD_TYPE ]; then BUILD_TYPE=Release fi # thanks to SO: http://stackoverflow.com/a/20283965/4118915 -CPU_CORE_COUNT=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || sysctl -n hw.ncpu) +if test -z "$CPU_CORE_COUNT"; then + CPU_CORE_COUNT=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || sysctl -n hw.ncpu) +fi pushd $(pwd) ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"