From 37ca3d35a9a0fc239e9a0d04164f41dd82ce493a Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Fri, 12 Jul 2013 17:36:59 -0400 Subject: [PATCH] Windows: use roken's rk_rename Windows CRT rename does not unlink the target if it exists. Change-Id: Id7bdf5729d418bb22b59ab11d0d5f31ccb7e3577 --- windows/NTMakefile.config | 3 +++ 1 file changed, 3 insertions(+) diff --git a/windows/NTMakefile.config b/windows/NTMakefile.config index a29029bc9..c8d19963e 100644 --- a/windows/NTMakefile.config +++ b/windows/NTMakefile.config @@ -93,6 +93,9 @@ NO_RAND_EGD_METHOD=1 # Windows CRT mkdir does not have the mode parameter MKDIR_DOES_NOT_HAVE_MODE=1 +# Windows CRT rename does not unlink the target +RENAME_DOES_NOT_UNLINK=1 + # Disable build of installers !ifndef NO_INSTALLERS BUILD_INSTALLERS=1 -- 2.11.4.GIT