From 49a14b16a18ddcc31be5486baba137096d1e8da1 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 16 Nov 2020 09:31:45 -0400 Subject: [PATCH] fix build on windows --- Utility/Touch.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/Utility/Touch.hs b/Utility/Touch.hs index 136091db42..8831f306a3 100644 --- a/Utility/Touch.hs +++ b/Utility/Touch.hs @@ -33,6 +33,7 @@ touch file mtime = touchBoth file mtime mtime #else import Data.Time.Clock.POSIX +import Utility.RawFilePath {- Noop for Windows -} touchBoth :: RawFilePath -> POSIXTime -> POSIXTime -> Bool -> IO ()