From 77c6a96e62bc8060edc81fd99957a5eb337cdb98 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Aug 2011 09:56:49 +0300 Subject: [PATCH] Updated aeson (removed Werror) --- aeson | 2 +- install-all.sh | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/aeson b/aeson index d231dbae..793d73ba 160000 --- a/aeson +++ b/aeson @@ -1 +1 @@ -Subproject commit d231dbaeb3988b8b9b02f59f1f8beab28bb48652 +Subproject commit 793d73bae1ec419f38d18fb360758a18f14fe723 diff --git a/install-all.sh b/install-all.sh index e1b3ada6..94d6e556 100755 --- a/install-all.sh +++ b/install-all.sh @@ -30,13 +30,15 @@ for pkg in "${pkgs[@]}"; do ( cd "./$pkg" - if ! $CABAL configure --enable-tests; then + if ! $CABAL configure --enable-tests --ghc-options="-Wall -Werror"; then $CABAL install --only-dependencies - $CABAL configure --enable-tests + $CABAL configure --enable-tests --ghc-options="-Wall -Werror" fi $CABAL build $CABAL test + $CABAL check + $CABAL haddock --executables ./Setup.lhs install ) done