From c6cb196fb1bd5f16bb5945add2d6ece3f7910e90 Mon Sep 17 00:00:00 2001
From: Herbert Valerio Riedel <hvr@gnu.org>
Date: Fri, 20 Mar 2015 07:58:17 +0100
Subject: [PATCH] Fix compilation with GHC 7.4

Follow-up to cdfcdee14ce9071bbfbddf0007df8aee8015da48
---
 deepseq.cabal | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/deepseq.cabal b/deepseq.cabal
index dd32d4c..7435b25 100644
--- a/deepseq.cabal
+++ b/deepseq.cabal
@@ -44,8 +44,8 @@ library
       Safe
       TypeOperators
 
-    -- GHC.Generics lived in `ghc-prim` for GHC 7.2
-    if impl(ghc < 7.4)
+    -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4
+    if impl(ghc < 7.6)
       build-depends: ghc-prim == 0.2.*
 
   build-depends: base       >= 4.3 && < 4.9,
-- 
GitLab