diff options
author | Mateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk> | 2014-04-03 21:16:07 +0100 |
---|---|---|
committer | Mateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk> | 2014-04-03 21:16:07 +0100 |
commit | 4d361e8b684587ea6c7e7b87a175eed0b7c0ada6 (patch) | |
tree | 0e7a70f3d800fc6e7f9c75dd97c6ad54ec3ca4b7 | |
parent | 52103425e6d621523fb0ed5b5b83c2588cacc7b6 (diff) |
Enforce strict GHC version in cabal file
This stops people with 7.6.3 trying to install 2.15.x which clearly
won't work. Unfortunately we shipped 2.14.x without realising this.
-rw-r--r-- | haddock.cabal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/haddock.cabal b/haddock.cabal index 9f9251d9..0e26949a 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -83,7 +83,7 @@ executable haddock array, xhtml >= 3000.2 && < 3000.3, Cabal >= 1.10, - ghc >= 7.7 && < 7.10, + ghc == 7.9.*, bytestring other-modules: @@ -143,7 +143,7 @@ library array, xhtml >= 3000.2 && < 3000.3, Cabal >= 1.10, - ghc >= 7.4 && < 7.10 + ghc == 7.9.* if flag(in-ghc-tree) cpp-options: -DIN_GHC_TREE |