summaryrefslogtreecommitdiffstats
path: root/Configurations/windows-makefile.tmpl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-05-23 09:36:02 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-23 09:36:02 +0200
commit7d52e55457eb8e888c3441a5b1de328238a7d9fb (patch)
treebacc1187b31e0a7a4c31f35abab190d6c968cafb /Configurations/windows-makefile.tmpl
parent154fe2b4be294050b9975edbbe2d83294a83d6b6 (diff)
Windows: shut DEL up
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'Configurations/windows-makefile.tmpl')
-rw-r--r--Configurations/windows-makefile.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
index 3f92f1400e..258421d4f3 100644
--- a/Configurations/windows-makefile.tmpl
+++ b/Configurations/windows-makefile.tmpl
@@ -394,8 +394,8 @@ $target: $deps $ordinalsfile $mkdef_pl
/implib:\$@ \$(LDOUTFLAG)$shlib$shlibext /def:$shlib.def @<< || (DEL /Q \$(\@B).* $shlib.* && EXIT 1)
$objs $shlib.res$linklibs \$(EX_LIBS)
<<
- DEL /Q /F apps\\$shlib$shlibext
- DEL /Q /F test\\$shlib$shlibext
+ IF EXIST apps\\$shlib$shlibext DEL /Q /F apps\\$shlib$shlibext
+ IF EXIST test\\$shlib$shlibext DEL /Q /F test\\$shlib$shlibext
COPY $shlib$shlibext apps
COPY $shlib$shlibext test
EOF