diff options
author | Joey Hess <id@joeyh.name> | 2013-05-14 14:21:35 -0500 |
---|---|---|
committer | Joey Hess <id@joeyh.name> | 2013-05-14 14:21:35 -0500 |
commit | 4eda8ef3e73ec1f0b385698de826a463f124f0a0 (patch) | |
tree | bf4edea187b9b7a48526077b9493bfcef210ff99 /Utility/Path.hs | |
parent | 981aeac8f51e07b3e6757b45076dc2bebe1d5e3a (diff) |
fix imports
Diffstat (limited to 'Utility/Path.hs')
-rwxr-xr-x[-rw-r--r--] | Utility/Path.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Utility/Path.hs b/Utility/Path.hs index 09cf739dc..4df0703ab 100644..100755 --- a/Utility/Path.hs +++ b/Utility/Path.hs @@ -10,7 +10,6 @@ module Utility.Path where import Data.String.Utils -import qualified "MissingH" System.Path as MissingH import System.FilePath import System.Directory import Data.List @@ -19,7 +18,9 @@ import Control.Applicative #ifdef __WINDOWS__ import Data.Char -import System.FilePath.Posix as Posix +import qualified System.FilePath.Posix as Posix +#else +import qualified "MissingH" System.Path as MissingH #endif import Utility.Monad |