diff options
-rwxr-xr-x | mojo/tools/mojob.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mojo/tools/mojob.sh b/mojo/tools/mojob.sh index 7a9389b..e0804d1 100755 --- a/mojo/tools/mojob.sh +++ b/mojo/tools/mojob.sh @@ -48,7 +48,7 @@ EOF do_build() { echo "Building in out/$1 ..." if [ "$GOMA" = "auto" -a -v GOMA_DIR ]; then - ninja -j 1000 -C "out/$1" mojo || exit 1 + ninja -j 1000 -l 100 -C "out/$1" mojo || exit 1 else ninja -C "out/$1" mojo || exit 1 fi |