From: Don Armstrong Date: Mon, 27 Jul 2015 14:55:43 +0000 (-0500) Subject: tweak the invocation slightly X-Git-Url: https://git.donarmstrong.com/?p=uiuc_igb_scripts.git;a=commitdiff_plain;h=7f6a00a8d8146146645947df2b3f6747e94366f2 tweak the invocation slightly --- diff --git a/run_make b/run_make index f26bcfc..ed5e034 100755 --- a/run_make +++ b/run_make @@ -1,9 +1,9 @@ #!/bin/bash -MAKE_OPTS= +MAKE_OPTS="" if [ -n "$MAKE_PARALLEL" ]; then - MAKE_OPTS=-j "$MAKE_PARALLEL" + MAKE_OPTS="-j$MAKE_PARALLEL"; fi; if [ -n "$MAKE_TARGET" ]; then make $MAKE_OPTS "$MAKE_TARGET";