diff --git a/build.sh b/build.sh index 6aa695b83..9eac50fd3 100755 --- a/build.sh +++ b/build.sh @@ -25,7 +25,7 @@ function usage() # Determine how many parallel jobs to use for make based on the number of cores unamestr="$(uname)" if [[ "$unamestr" == "Linux" ]]; then - PARALLEL=$(nproc --all) + PARALLEL=$(nproc) elif [[ "$unamestr" == "Darwin" ]]; then PARALLEL=$(sysctl -n hw.ncpu) else