Browse Source

scons: fixed parse-config to honor NOPARALLEL flag

stable/0.2
Christian Wiese 13 years ago
parent
commit
2e53b5deb5
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      develop/scons/parse-config

+ 7
- 1
develop/scons/parse-config

@ -2,6 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../scons/parse-config
# Copyright (C) 2011 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
@ -12,5 +13,10 @@
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
[ "$SDECFG_PARALLEL_MAX" ] && var_insert sconsopt " " "--jobs $SDECFG_PARALLEL_MAX"
if ! hasflag NOPARALLEL && [ "$SDECFG_PARALLEL_MAX" ] ; then
if [ $SDECFG_PARALLEL_MAX -gt 1 ]; then
# echo_status "Parallel build using $SDECFG_PARALLEL_MAX jobs enabled."
var_insert sconsopt " " "--jobs $SDECFG_PARALLEL_MAX"
fi
fi

Loading…
Cancel
Save