summaryrefslogtreecommitdiff
path: root/scripts/make-ll
diff options
context:
space:
mode:
authorAllan Stephens <allan.stephens@windriver.com>2015-06-08 11:43:48 -0400
committerAnas Nashif <anas.nashif@intel.com>2016-02-05 20:14:15 -0500
commit570795f014b74d0d82c5d98b812d6e38bcf08e9a (patch)
tree44b7bc6cef7aa0ddbdb72e90d59d62330c716cd8 /scripts/make-ll
parent74b98c1cc45dc5ca049ccdac5ef7945ab316c63e (diff)
Rename VXMICRO_JOBS to ZEPHYR_JOBS
Updates this environment variable to reflect the new OS name. Change-Id: Icc6a2f3d4cdfcf7cab11da7920aaa8110177047b Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Diffstat (limited to 'scripts/make-ll')
-rwxr-xr-xscripts/make-ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/make-ll b/scripts/make-ll
index eab0d50b6..2a5b9972b 100755
--- a/scripts/make-ll
+++ b/scripts/make-ll
@@ -34,9 +34,9 @@
num_cpus=$(\grep -c "^processor" /proc/cpuinfo)
-if [ x${VXMICRO_JOBS} = x ]; then
- VXMICRO_JOBS=$((${num_cpus} * 2 + 1))
+if [ x${ZEPHYR_JOBS} = x ]; then
+ ZEPHYR_JOBS=$((${num_cpus} * 2 + 1))
fi
-echo Using $VXMICRO_JOBS threads
-nice make --jobs=${VXMICRO_JOBS} --load-average=${num_cpus} $@
+echo Using $ZEPHYR_JOBS threads
+nice make --jobs=${ZEPHYR_JOBS} --load-average=${num_cpus} $@