summaryrefslogtreecommitdiff
path: root/src/Propellor/PrivData.hs
diff options
context:
space:
mode:
authorJoey Hess2015-12-19 16:52:53 -0400
committerJoey Hess2015-12-19 16:52:53 -0400
commit714270abfcf6433da29dc80fdcaff740ad2a0169 (patch)
tree5a73c676e40ca029487845aa6bd87a74e93b8556 /src/Propellor/PrivData.hs
parent4e4c7bb914779ded627bc28de116acd8b0867986 (diff)
Clean build with ghc 7.10.
Import Prelude after modules that cause warnings due to AMP change
Diffstat (limited to 'src/Propellor/PrivData.hs')
-rw-r--r--src/Propellor/PrivData.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Propellor/PrivData.hs b/src/Propellor/PrivData.hs
index a1e34abc..2ed75e33 100644
--- a/src/Propellor/PrivData.hs
+++ b/src/Propellor/PrivData.hs
@@ -23,11 +23,9 @@ module Propellor.PrivData (
forceHostContext,
) where
-import Control.Applicative
import System.IO
import System.Directory
import Data.Maybe
-import Data.Monoid
import Data.List
import Data.Typeable
import Control.Monad
@@ -38,6 +36,9 @@ import qualified Data.Set as S
import qualified Data.ByteString.Lazy as L
import System.Console.Concurrent
import System.Console.Concurrent.Internal (ConcurrentProcessHandle(..))
+import Control.Applicative
+import Data.Monoid
+import Prelude
import Propellor.Types
import Propellor.Types.PrivData