install-all.sh: revert changes

This commit is contained in:
Michael Snoyman 2011-08-19 00:54:51 +03:00
parent 11232246ed
commit 02b00d91ba

View File

@ -10,6 +10,8 @@ for package in $PACKAGES
do
echo Installing $package
cd $package
$CABAL configure --enable-tests && $CABAL build && $CABAL test && ./Setup.lhs install || exit 1
($CABAL configure --enable-tests ||
($CABAL install --only-dependencies --enable-tests && $CABAL configure --enable-tests)
) && $CABAL build && $CABAL test && ./Setup.lhs install || exit 1
cd ..
done