From 64a3cb99fc3a3d6334fa2fef5d97bfed6d1034ed Mon Sep 17 00:00:00 2001 From: lace <> Date: Thu, 11 Oct 2007 19:42:40 +0000 Subject: [PATCH] +-j --- bin/errs2 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/errs2 b/bin/errs2 index 1bf94d7..7563cf7 100755 --- a/bin/errs2 +++ b/bin/errs2 @@ -6,7 +6,12 @@ if [ "$1" = "-a" ];then args="$args $1" shift fi +j="" +cpus="`getconf _NPROCESSORS_ONLN`" +if [ -n "$cpus" ];then + j="-j$[$cpus+1]" +fi ( set -ex - time nice make "$@" + time nice make $j "$@" ) 2>&1|tee $args errs2 -- 1.8.3.1