MAKEALL: Use POSIX math

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
This commit is contained in:
Peter Tyser 2009-09-21 12:04:33 -05:00 committed by Tom Rix
parent e6fb20a939
commit d4b5d60d2a

View File

@ -9,7 +9,7 @@ trap print_stats 0
if [ "$BUILD_NCPUS" -gt 1 ]
then
JOBS=-j`expr "$BUILD_NCPUS" + 1`
JOBS="-j $((BUILD_NCPUS + 1))"
else
JOBS=""
fi