[commit: haddock] v2.14: Enforce strict GHC version in cabal file (0fce760)

git at git.haskell.org git at git.haskell.org
Fri Apr 11 18:04:10 UTC 2014


Repository : ssh://git@git.haskell.org/haddock

On branch  : v2.14
Link       : http://git.haskell.org/haddock.git/commitdiff/0fce76004ef1746d475ab0ae7a6912d319ae811c

>---------------------------------------------------------------

commit 0fce76004ef1746d475ab0ae7a6912d319ae811c
Author: Mateusz Kowalczyk <fuuzetsu at fuuzetsu.co.uk>
Date:   Thu Apr 3 21:16:07 2014 +0100

    Enforce strict GHC version in cabal file
    
    This stops people with 7.6.3 trying to install 2.15.x/2.14.3 which
    clearly won't work.


>---------------------------------------------------------------

0fce76004ef1746d475ab0ae7a6912d319ae811c
 haddock.cabal |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/haddock.cabal b/haddock.cabal
index d070460..cdcbcb4 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.8.*,
       bytestring
 
     other-modules:
@@ -143,7 +143,7 @@ library
     array,
     xhtml >= 3000.2 && < 3000.3,
     Cabal >= 1.10,
-    ghc >= 7.4 && < 7.10
+    ghc == 7.8.*
 
   if flag(in-ghc-tree)
     cpp-options: -DIN_GHC_TREE



More information about the ghc-commits mailing list