don't automatically install testing dependencies

it doesn't actually work
This commit is contained in:
Greg Weber 2011-08-20 06:41:52 -07:00
parent 67c1c55e41
commit 59c455d602

View File

@ -11,7 +11,7 @@ do
echo Installing $package
cd $package
($CABAL configure --enable-tests ||
($CABAL install --only-dependencies --enable-tests && $CABAL configure --enable-tests)
($CABAL install --only-dependencies && $CABAL configure --enable-tests)
) && $CABAL build && $CABAL test && ./Setup.lhs install || exit 1
cd ..
done