aboutsummaryrefslogtreecommitdiff
path: root/haddock.cabal
diff options
context:
space:
mode:
authorsven.panne <sven.panne@aedion.de>2006-04-20 12:39:23 +0000
committersven.panne <sven.panne@aedion.de>2006-04-20 12:39:23 +0000
commit34a994d64a3e1efd1fc4342202b55cfa99268de7 (patch)
treef1303afc3cfa9c85f72525316a756fb22235848f /haddock.cabal
parent8610849df8ef8ee39bb6ffd4b797fded23ceae7d (diff)
Avoid pattern guards
Due to the use of pattern guards in Haddock, GHC was called with -fglasgow-exts. This in turn enables bang patterns, too, which broke the Haddock build. Removing some unnecessary pattern guards seemed to be the better way of fixing this instead of using a pragma to disable pattern guards.
Diffstat (limited to 'haddock.cabal')
-rw-r--r--haddock.cabal2
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock.cabal b/haddock.cabal
index daca9693..344bb0e4 100644
--- a/haddock.cabal
+++ b/haddock.cabal
@@ -56,7 +56,7 @@ extra-source-files:
executable: haddock
hs-source-dirs: src
main-is: Main.hs
-extensions: CPP, PatternGuards
+extensions: CPP
other-modules:
Binary
BlockTable