diff options
author | Ian Lynagh <igloo@earth.li> | 2007-07-30 18:28:06 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-07-30 18:28:06 +0000 |
commit | c5805c8232bd3ece535e78c86c72bddec05bb975 (patch) | |
tree | 3c37d610605220981d5d5e499eb7a32ed648afb4 /validate | |
parent | 81b2276ff9434d97aff683218c34c86479a8d868 (diff) | |
download | haskell-c5805c8232bd3ece535e78c86c72bddec05bb975.tar.gz |
#1559 is worked around elsewhere, so validate no longer needs to
Diffstat (limited to 'validate')
-rw-r--r-- | validate | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -27,13 +27,9 @@ case $OSTYPE in esac if [ "$CPUS" = "" ]; then - # ToDo: make -j doesn't work in libraries/ on Windows (see #1559) - case $OSTYPE in - cygwin|msys) threads=1;; - *) threads=2;; - esac + threads=2 else - threads=`expr $CPUS + 1` + threads=`expr $CPUS + 1` fi sh boot |