diff options
author | Joey Hess <joey@kitenet.net> | 2014-08-31 07:57:07 -0700 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-08-31 07:57:07 -0700 |
commit | a589ef78806f2e643819b89596fda31f74047caa (patch) | |
tree | 0bb31785e83384134ad175852e8afb9ea9a81e90 | |
parent | f6bd561f5aa84b060d65b8cba093e9e07924cd90 (diff) |
fix build
-rw-r--r-- | Build/LinuxMkLibs.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/LinuxMkLibs.hs b/Build/LinuxMkLibs.hs index 3db724b0a..1ca2fa651 100644 --- a/Build/LinuxMkLibs.hs +++ b/Build/LinuxMkLibs.hs @@ -82,7 +82,7 @@ symToHardLink f = whenM (isSymbolicLink <$> getSymbolicLinkStatus f) $ do installFile :: FilePath -> FilePath -> IO () installFile top f = do createDirectoryIfMissing True destdir - void $ copyFileExternal f destdir + void $ copyFileExternal CopyTimeStamps f destdir where destdir = inTop top $ parentDir f |