aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-05 09:54:02 +0000
committermoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-05 09:54:02 +0000
commit3b380e24b2ddf2bcc5febf3ebd65f84f3bf373c5 (patch)
treefea4e8c4b2c7993c44b6cfcd4d083ecfc9164b79
parentc9bb2f571895edb6a01ca5528c944d09bc222823 (diff)
downloadmonzero-gui-3b380e24b2ddf2bcc5febf3ebd65f84f3bf373c5.tar.gz
monzero-gui-3b380e24b2ddf2bcc5febf3ebd65f84f3bf373c5.tar.xz
monzero-gui-3b380e24b2ddf2bcc5febf3ebd65f84f3bf373c5.zip
Allow user to set number of parallel jobs
-rwxr-xr-xget_libwallet_api.sh4
1 files changed, 3 insertions, 1 deletions
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 )"