Android: Fix use of cp command to not try to use features present only on build system.

This commit is contained in:
Joey Hess 2013-06-14 11:54:44 -04:00
parent fe53456c1d
commit 923d6c81bc
3 changed files with 8 additions and 0 deletions

View file

@ -23,11 +23,15 @@ copyFileExternal src dest = do
removeFile dest
boolSystem "cp" $ params ++ [File src, File dest]
where
#ifndef __ANDROID__
params = map snd $ filter fst
[ (SysConfig.cp_reflink_auto, Param "--reflink=auto")
, (SysConfig.cp_a, Param "-a")
, (SysConfig.cp_p && not SysConfig.cp_a, Param "-p")
]
#else
params = []
#endif
{- Create a hard link if the filesystem allows it, and fall back to copying
- the file. -}