Skip to content
Snippets Groups Projects
Commit 55f786d8 authored by Peter Tyser's avatar Peter Tyser Committed by Wolfgang Denk
Browse files

MAKEALL: Use POSIX math


Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
parent 40a28f08
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment