mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 20:28:59 +00:00
MAKEALL: Use POSIX math
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
This commit is contained in:
parent
e6fb20a939
commit
d4b5d60d2a
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…
Reference in a new issue