[scripts] have buildall nice the build and use -j4

This commit is contained in:
Travis Geiselbrecht
2012-08-31 14:16:54 -07:00
parent b679cd0f0c
commit 8cb6fbedc2

View File

@@ -4,7 +4,7 @@ PROJECTS="armemu-test sam7ex256-test osk5912-test qemu-arm-test beagle-test surf
FAILED=""
for p in $PROJECTS; do
PROJECT=$p make -j2 || FAILED="$FAILED $p"
PROJECT=$p nice make -j4 || FAILED="$FAILED $p"
done
if [ "$FAILED" != "" ]; then