diff options
author | Ian Lynagh <igloo@earth.li> | 2012-05-19 12:27:26 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-05-19 12:55:22 +0100 |
commit | 0f4925b6dfa40010bbf19e2824224b5a568d4f57 (patch) | |
tree | 55e68351d8e670d8ab37a6e2af4786f90bbf7c85 /ghc/ghc-bin.cabal.in | |
parent | 293475bc48bdb41c2629d752b2cbe2bd49b71571 (diff) | |
download | haskell-0f4925b6dfa40010bbf19e2824224b5a568d4f57.tar.gz |
Use transformers directly, rather than using mtl
This means we no longer need mtl in a GHC tree.
Diffstat (limited to 'ghc/ghc-bin.cabal.in')
-rw-r--r-- | ghc/ghc-bin.cabal.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/ghc-bin.cabal.in b/ghc/ghc-bin.cabal.in index 1c898f256f..a7e7bbae66 100644 --- a/ghc/ghc-bin.cabal.in +++ b/ghc/ghc-bin.cabal.in @@ -44,7 +44,7 @@ Executable ghc CPP-Options: -DGHCI GHC-Options: -fno-warn-name-shadowing Other-Modules: InteractiveUI, GhciMonad, GhciTags - Build-Depends: mtl, haskeline + Build-Depends: transformers, haskeline Extensions: ForeignFunctionInterface, UnboxedTuples, FlexibleInstances, |