diff options
author | Ian Lynagh <igloo@earth.li> | 2010-07-04 18:41:55 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-07-04 18:41:55 +0000 |
commit | 8582fce6b6a97fcb5842293866e236fc12cf58c3 (patch) | |
tree | f3989c1164b296090e6606a0418336da0752a11f /utils | |
parent | eb39f720c731b10b340ebadc809d91f9683ea157 (diff) | |
download | haskell-8582fce6b6a97fcb5842293866e236fc12cf58c3.tar.gz |
Simplify ghc-pkg's Cabal dependencies
We no longer support building with a compiler that doesn't come with
base 4.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ghc-pkg/ghc-pkg.cabal | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/utils/ghc-pkg/ghc-pkg.cabal b/utils/ghc-pkg/ghc-pkg.cabal index 6be5ce6bd9..eb54d84717 100644 --- a/utils/ghc-pkg/ghc-pkg.cabal +++ b/utils/ghc-pkg/ghc-pkg.cabal @@ -13,32 +13,15 @@ Category: Development build-type: Simple cabal-version: >=1.2 -Flag base4 - Description: Choose the even newer, even smaller, split-up base package. - -Flag base3 - Description: Choose the new smaller, split-up base package. - Executable ghc-pkg Main-Is: Main.hs Other-Modules: Version Extensions: CPP, ForeignFunctionInterface - if flag(base4) - Build-Depends: base >= 4 && < 5 - if flag(base3) - Build-Depends: base >= 3 && < 4 - if !flag(base3) && !flag(base4) - Build-Depends: base < 3 - - if flag(base3) || flag(base4) - Build-Depends: directory >= 1 && < 1.1, - process >= 1 && < 1.1 - - if impl(ghc < 6.9) - Build-Depends: extensible-exceptions - - Build-Depends: haskell98, + Build-Depends: base >= 4 && < 5, + directory >= 1 && < 1.1, + process >= 1 && < 1.1, + haskell98, filepath, Cabal, binary, |