mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
MAKEALL: Use POSIX math
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
This commit is contained in:
parent
40a28f0885
commit
55f786d8ba
1 changed files with 1 additions and 1 deletions
2
MAKEALL
2
MAKEALL
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue