aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael Moll <ralf@android.com>2010-10-29 18:53:07 -0700
committerAndroid Code Review <code-review@android.com>2010-10-29 18:53:07 -0700
commit4aa7a190bb81b7e3ad12d53b83908c3c72745f6e (patch)
tree0038b9985fdf33a49db307473e0c1505c80c87ae
parent54ddcc2724b0e1ab790d00eb9435a493da07aa03 (diff)
parente6add13d712111b96806911b0330b0de42d68b94 (diff)
downloadbuild-4aa7a190bb81b7e3ad12d53b83908c3c72745f6e.tar.gz
Merge "Fix "make acp" under Cygwin. DO NOT MERGE."
-rw-r--r--libs/host/CopyFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/host/CopyFile.c b/libs/host/CopyFile.c
index 44c7c2ba62..3cbe34a931 100644
--- a/libs/host/CopyFile.c
+++ b/libs/host/CopyFile.c
@@ -69,7 +69,7 @@ static bool isSourceNewer(const struct stat* pSrcStat, const struct stat* pDstSt
*/
static bool isHiresMtime(const struct stat* pSrcStat)
{
-#if defined(WIN32_EXE) || defined(USE_MINGW)
+#if defined(WIN32) || defined(USE_MINGW)
return 0;
#elif defined(MACOSX_RSRC)
return pSrcStat->st_mtimespec.tv_nsec > 0;