diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-05-05 15:49:56 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-05-05 15:49:56 -0400 |
commit | c3395d3d9443084bda31a661849d7d2ce6d5ff63 (patch) | |
tree | 58b272618307be33fd0086ee1f28452b7a2b5a3b /Command | |
parent | 00ce65fd76d985bc657fb1f97fea7ebd1c3484cc (diff) |
fix build warning on windows and android
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Fix.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Command/Fix.hs b/Command/Fix.hs index 3a153c761..6ef942be8 100644 --- a/Command/Fix.hs +++ b/Command/Fix.hs @@ -18,7 +18,9 @@ import Annex.Content import Annex.Perms import qualified Annex.Queue import qualified Database.Keys +#if ! defined(mingw32_HOST_OS) && ! defined(__ANDROID__) import Utility.Touch +#endif cmd :: Command cmd = notDirect $ noCommit $ withGlobalOptions annexedMatchingOptions $ |