diff options
author | 2013-02-23 12:49:00 -0400 | |
---|---|---|
committer | 2013-02-23 12:49:00 -0400 | |
commit | eb328bbf17fc789a35e8c856c89c50bafcd08a08 (patch) | |
tree | bc72337fc0a432eb97418229cb2f253abe42565d | |
parent | 8c522b3c81565c99bd8e66884fb60a537b6b5376 (diff) | |
parent | 40ad521db38fe6ad5d4d0e0aa56559c712be0fa2 (diff) |
Merge branch 'update-cabal-build' of https://github.com/peti/git-annex
-rw-r--r-- | Common.hs | 2 | ||||
-rw-r--r-- | Utility/Path.hs | 3 | ||||
-rw-r--r-- | git-annex.cabal | 7 |
3 files changed, 7 insertions, 5 deletions
@@ -12,7 +12,7 @@ import Data.Maybe as X import Data.List as X hiding (head, tail, init, last) import Data.String.Utils as X -import System.Path as X +import "MissingH" System.Path as X import System.FilePath as X import System.Directory as X import System.IO as X hiding (FilePath) diff --git a/Utility/Path.hs b/Utility/Path.hs index ba836d9b6..d058082df 100644 --- a/Utility/Path.hs +++ b/Utility/Path.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE PackageImports #-} {- path manipulation - - Copyright 2010-2011 Joey Hess <joey@kitenet.net> @@ -8,7 +9,7 @@ module Utility.Path where import Data.String.Utils -import System.Path +import "MissingH" System.Path import System.FilePath import System.Directory import Data.List diff --git a/git-annex.cabal b/git-annex.cabal index b588a1321..6bfb8a06e 100644 --- a/git-annex.cabal +++ b/git-annex.cabal @@ -76,7 +76,7 @@ Executable git-annex if flag(WebDAV) Build-Depends: DAV (>= 0.3), http-conduit, xml-conduit, http-types CPP-Options: -DWITH_WEBDAV - + if flag(Assistant) Build-Depends: async @@ -127,12 +127,13 @@ Test-Suite test old-locale, time, extensible-exceptions, dataenc, SHA, process, json, base (>= 4.5 && < 4.7), monad-control, transformers-base, lifted-base, IfElse, text, QuickCheck >= 2.1, - bloomfilter, edit-distance, process, SafeSemaphore, Glob + bloomfilter, edit-distance, process, SafeSemaphore, Glob, random, uuid Other-Modules: Utility.Touch Include-Dirs: Utility C-Sources: Utility/libdiskfree.c Extensions: CPP - GHC-Options: -threaded -DWITH_GLOB + GHC-Options: -threaded + CPP-Options: -DWITH_GLOB source-repository head type: git |