summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-04-14 12:51:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-04-14 13:20:01 -0400
commit7f84f433afb11245f875e279a20ae0748b92ba1a (patch)
tree1ae3eea044bc4635cfa102443fc9a803c47e88f2
parentea36d9ef3e5266bc0580db7274df0cd5e2860f8c (diff)
seems I need PackageImports here for configure
-rw-r--r--Common.hs2
-rw-r--r--Utility/Path.hs2
2 files changed, 4 insertions, 0 deletions
diff --git a/Common.hs b/Common.hs
index e8093c43a..3513425c0 100644
--- a/Common.hs
+++ b/Common.hs
@@ -1,3 +1,5 @@
+{-# LANGUAGE PackageImports #-}
+
module Common (module X) where
import Control.Monad as X hiding (join)
diff --git a/Utility/Path.hs b/Utility/Path.hs
index 8c8fc39e7..4ffcf1c65 100644
--- a/Utility/Path.hs
+++ b/Utility/Path.hs
@@ -5,6 +5,8 @@
- Licensed under the GNU GPL version 3 or higher.
-}
+{-# LANGUAGE PackageImports #-}
+
module Utility.Path where
import Data.String.Utils