mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-25 11:25:17 +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 ]
|
if [ "$BUILD_NCPUS" -gt 1 ]
|
||||||
then
|
then
|
||||||
JOBS=-j`expr "$BUILD_NCPUS" + 1`
|
JOBS="-j $((BUILD_NCPUS + 1))"
|
||||||
else
|
else
|
||||||
JOBS=""
|
JOBS=""
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue