Updated aeson (removed Werror)

This commit is contained in:
Michael Snoyman 2011-08-28 09:56:49 +03:00
parent 78918efee1
commit 77c6a96e62
2 changed files with 5 additions and 3 deletions

2
aeson

@ -1 +1 @@
Subproject commit d231dbaeb3988b8b9b02f59f1f8beab28bb48652 Subproject commit 793d73bae1ec419f38d18fb360758a18f14fe723

View File

@ -30,13 +30,15 @@ for pkg in "${pkgs[@]}"; do
( (
cd "./$pkg" cd "./$pkg"
if ! $CABAL configure --enable-tests; then if ! $CABAL configure --enable-tests --ghc-options="-Wall -Werror"; then
$CABAL install --only-dependencies $CABAL install --only-dependencies
$CABAL configure --enable-tests $CABAL configure --enable-tests --ghc-options="-Wall -Werror"
fi fi
$CABAL build $CABAL build
$CABAL test $CABAL test
$CABAL check
$CABAL haddock --executables
./Setup.lhs install ./Setup.lhs install
) )
done done