1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-11-03 03:46:02 +01:00

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 Wolfgang Denk
parent 40a28f0885
commit 55f786d8ba

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