diff options
author | Ian Lynagh <igloo@earth.li> | 2012-05-19 13:43:27 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-05-19 13:43:27 +0100 |
commit | 113ae477493dba17fe489f95eff40c8c1bd04840 (patch) | |
tree | ff6d00846314be47c30cd049ee0eb0777130afed /validate | |
parent | 0f4925b6dfa40010bbf19e2824224b5a568d4f57 (diff) | |
download | haskell-113ae477493dba17fe489f95eff40c8c1bd04840.tar.gz |
Full validates now install transformers rather than mtl
Diffstat (limited to 'validate')
-rwxr-xr-x | validate | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -106,8 +106,9 @@ if [ $speed != "FAST" ]; then $make test_bindist TEST_PREP=YES # - # Install the mtl package into the bindist, because it is used by some - # tests. It isn't essential that we do this (the failing tests will + # Install the transformers package into the bindist, because it is + # used by some tests. + # It isn't essential that we do this (the failing tests will # be treated as expected failures), but we get a bit more test # coverage, and also verify that we can install a package into the # bindist with Cabal. @@ -126,7 +127,7 @@ if [ $speed != "FAST" ]; then DO_HADDOCK=YES fi - cd libraries/mtl + cd libraries/transformers "$thisdir/$bindistdir/bin/ghc" --make Setup ./Setup configure --with-ghc="$thisdir/$bindistdir/bin/ghc" ${WITH_HADDOCK+"$WITH_HADDOCK"} --global --builddir=dist-bindist --prefix="$thisdir/$bindistdir" |