diff options
Diffstat (limited to 'resources/scripts/helpers/build/module/bucts')
-rwxr-xr-x | resources/scripts/helpers/build/module/bucts | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/module/bucts b/resources/scripts/helpers/build/module/bucts index 6e54fc1b..8e2b371d 100755 --- a/resources/scripts/helpers/build/module/bucts +++ b/resources/scripts/helpers/build/module/bucts @@ -24,6 +24,17 @@ [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e +if [ -z ${NPROC+x} ]; then + cores="$(nproc)" +else + case ${NPROC} in + ''|*[!0-9]*) + printf "value '%s' for NPROC is invalid. non-numeric. Exiting.\n" "${NPROC}" + exit 1 + ;; + esac + cores="${NPROC}" +fi # Build BUC.TS utility (needed for flashing ROM images on X60/T60 while Lenovo BIOS is running) # -------------------------------------------------------------------- @@ -44,7 +55,7 @@ if [ "${buildtype}" = "static" ]; then fi make clean -make -j$(nproc) +make -j${cores} if [ "${buildtype}" = "static" ]; then patch "Makefile" -R < "../resources/bucts/patch/staticlink.diff" |