From 3290f5339ec3c68d8c7c43c0602ee126a3106a72 Mon Sep 17 00:00:00 2001 From: Greg Weber Date: Thu, 1 Mar 2012 10:24:44 -0800 Subject: [PATCH] < 7.4, not <= 7.4 for (<>) --- yesod/scaffold/Import.hs.cg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yesod/scaffold/Import.hs.cg b/yesod/scaffold/Import.hs.cg index 9bc7ce06..e0a896cd 100644 --- a/yesod/scaffold/Import.hs.cg +++ b/yesod/scaffold/Import.hs.cg @@ -6,7 +6,7 @@ module Import , module Control.Applicative , module Settings.StaticFiles , Text -#if __GLASGOW_HASKELL__ <= 740 +#if __GLASGOW_HASKELL__ < 740 , (<>) #endif ) where @@ -19,7 +19,7 @@ import Control.Applicative ((<$>), (<*>), pure) import Data.Text (Text) import Settings.StaticFiles -#if __GLASGOW_HASKELL__ <= 740 +#if __GLASGOW_HASKELL__ < 740 infixr 5 <> (<>) :: Monoid m => m -> m -> m (<>) = mappend