diff options
| author | Joey Hess <joeyh@joeyh.name> | 2016-04-28 15:31:35 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2016-04-28 15:31:35 -0400 |
| commit | 2e513dc98c51eca1cdfce3715b4a017be39734f7 (patch) | |
| tree | d043e76be4a9300b6dec2ae27075ee6775f6502a /src/Propellor/PrivData.hs | |
| parent | 73f07cb6622e891022b88cd13593ff660c7bd327 (diff) | |
Fix build with directory-1.2.6.2.
It's now exporting a conflicting isSymbolicLink
https://github.com/haskell/directory/issues/52
Only a few places in propellor use isSymbolicLink, but to prevent future
problems, made as much of it as possible import Utility.Directory, which
re-exports System.Directory without the conflicting symbol.
(Utility.Tmp and System.Console.Concurrent.Internal cannot import
Utility.Directory due to cycles, and don't use isSymbolicLink anyway.)
Diffstat (limited to 'src/Propellor/PrivData.hs')
| -rw-r--r-- | src/Propellor/PrivData.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/PrivData.hs b/src/Propellor/PrivData.hs index d3bb3a6d..2e9cdbab 100644 --- a/src/Propellor/PrivData.hs +++ b/src/Propellor/PrivData.hs @@ -26,7 +26,6 @@ module Propellor.PrivData ( ) where import System.IO -import System.Directory import Data.Maybe import Data.List import Data.Typeable @@ -59,6 +58,7 @@ import Utility.FileMode import Utility.Env import Utility.Table import Utility.FileSystemEncoding +import Utility.Directory -- | Allows a Property to access the value of a specific PrivDataField, -- for use in a specific Context or HostContext. |
