diff options
| author | Joey Hess <joeyh@joeyh.name> | 2016-05-22 15:52:27 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2016-05-22 15:53:58 -0400 |
| commit | 0d9148d03cd40ddf9ae79fadd6571dd0fd576d5b (patch) | |
| tree | 8939263d3925289d1223a40e6348ceca6846bb32 /src/Utility/Directory.hs | |
| parent | 14e5429163f0138f03deaaa1134c8b4982c27141 (diff) | |
split out module to work around badly named symbol in directory-1.2.6.2
Sadly my bug report about this is not going to get fixed it seems, so
I have to drag around a whole added module file just to deal with it.
https://github.com/haskell/directory/issues/52
Diffstat (limited to 'src/Utility/Directory.hs')
| -rw-r--r-- | src/Utility/Directory.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Utility/Directory.hs b/src/Utility/Directory.hs index 3b12b9fc..693e7713 100644 --- a/src/Utility/Directory.hs +++ b/src/Utility/Directory.hs @@ -6,15 +6,14 @@ -} {-# LANGUAGE CPP #-} -{-# OPTIONS_GHC -fno-warn-tabs -w #-} +{-# OPTIONS_GHC -fno-warn-tabs #-} module Utility.Directory ( module Utility.Directory, - module System.Directory + module Utility.SystemDirectory ) where import System.IO.Error -import System.Directory hiding (isSymbolicLink) import Control.Monad import System.FilePath import Control.Applicative @@ -31,6 +30,7 @@ import Utility.SafeCommand import Control.Monad.IfElse #endif +import Utility.SystemDirectory import Utility.PosixFiles import Utility.Tmp import Utility.Exception |
