From: Simon Marlow Date: Mon, 30 Mar 2009 08:30:32 +0000 (+0000) Subject: go back to using $CPUS + 1 for the number of threads to use X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=33f4c84c22896ffd2a8aabf163fcced38faf523d go back to using $CPUS + 1 for the number of threads to use --- diff --git a/validate b/validate index b364f57..d57a095 100644 --- a/validate +++ b/validate @@ -48,7 +48,7 @@ done if [ "$CPUS" = "" ]; then threads=2 else - threads=$((($CPUS + 1) * 2)) # `expr $CPUS + 1` + threads=$(($CPUS + 1)) # `expr $CPUS + 1` fi if [ $testsuite_only -eq 0 ]; then