diff options
author | Joey Hess <joey@kitenet.net> | 2013-10-02 20:26:00 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-10-02 20:26:00 -0400 |
commit | c3cb01cec2fa582c65046594c2d8179eb2404c9d (patch) | |
tree | b02cf4c091f1e90d14374093a9abc5d9c15bf059 /Git | |
parent | 18e8d52877915df42debab13d4c4031c85c498f3 (diff) |
fix windows build
Diffstat (limited to 'Git')
-rw-r--r-- | Git/Construct.hs | 2 | ||||
-rw-r--r-- | Git/Remote.hs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Git/Construct.hs b/Git/Construct.hs index 377ddeeae..6514b80bc 100644 --- a/Git/Construct.hs +++ b/Git/Construct.hs @@ -25,8 +25,6 @@ module Git.Construct ( #ifndef mingw32_HOST_OS import System.Posix.User -#else -import Git.FilePath #endif import qualified Data.Map as M hiding (map, split) import Network.URI diff --git a/Git/Remote.hs b/Git/Remote.hs index 3dc6d9e45..dfb6a721c 100644 --- a/Git/Remote.hs +++ b/Git/Remote.hs @@ -17,6 +17,9 @@ import qualified Git.BuildVersion import Data.Char import qualified Data.Map as M import Network.URI +#ifdef mingw32_HOST_OS +import Git.FilePath +#endif type RemoteName = String |