aboutsummaryrefslogtreecommitdiff
path: root/haddock.cabal
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-08-27 20:41:27 +0000
committerIan Lynagh <igloo@earth.li>2008-08-27 20:41:27 +0000
commit3f3fe08e87db0ae829a4447896f50fae25e175c3 (patch)
treee48866b3f7df3d83319b406a2ff31446f20b2c05 /haddock.cabal
parent3bedb421f81d6ebe5245df8a1326517b19271e2b (diff)
Update extensions in Cabal file
Use ScopedTypeVariables instead of PatternSignatures
Diffstat (limited to 'haddock.cabal')
-rw-r--r--haddock.cabal4
1 files changed, 2 insertions, 2 deletions
diff --git a/haddock.cabal b/haddock.cabal
index 985a2a2b..3464ea76 100644
--- a/haddock.cabal
+++ b/haddock.cabal
@@ -82,7 +82,7 @@ executable haddock
main-is: Main.hs
hs-source-dirs: src
extensions: CPP, PatternGuards, DeriveDataTypeable,
- PatternSignatures, MagicHash
+ ScopedTypeVariables, MagicHash
ghc-options: -funbox-strict-fields -O2
other-modules:
@@ -122,7 +122,7 @@ executable haddock
library
hs-source-dirs: src
extensions: CPP, PatternGuards, DeriveDataTypeable,
- PatternSignatures, MagicHash
+ ScopedTypeVariables, MagicHash
exposed-modules: Distribution.Haddock
other-modules:
Haddock.Types