This is an automated email from the ASF dual-hosted git repository.

mturk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git


The following commit(s) were added to refs/heads/master by this push:
     new 8fc2706  Use simple rmdir/mkdir
8fc2706 is described below

commit 8fc2706cbee516aa330768ad19aefff2e91dafbb
Author: Mladen Turk <mt...@apache.org>
AuthorDate: Sat Jun 13 13:30:25 2020 +0200

    Use simple rmdir/mkdir
---
 native/iis/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/native/iis/Makefile b/native/iis/Makefile
index 7e22e48..a84190b 100644
--- a/native/iis/Makefile
+++ b/native/iis/Makefile
@@ -38,8 +38,8 @@ BUILDMFT = $(BUILDBIN).manifest
 PCRELIB  = .\pcre\$(WORKDIR)\pcre.lib
 
 WORKDIR = $(BUILD_CPU)_RELEASE
-CLEANTARGET=if exist "$(WORKDIR)" rd /s /q $(WORKDIR)
-MAKEWORKDIR=if not exist "$(WORKDIR)" md $(WORKDIR)
+CLEANTARGET = rd /s /q $(WORKDIR)
+MAKEWORKDIR = md $(WORKDIR)
 NMAKE_WINVER=0x0700
 CFLAGS = $(CFLAGS) -DNDEBUG -DWIN32 -D_WINNT -DWINNT 
-D_WIN32_WINNT=$(NMAKE_WINVER) -DWINVER=$(NMAKE_WINVER) -DHAVE_CONFIG_H 
$(CPUFLAGS)
 CFLAGS = $(CFLAGS) -DPCRE_STATIC -DJK_ISAPI -DISAPI_EXPORTS
@@ -102,5 +102,5 @@ clean:
        $(MAKE) clean
        @if not ERRORLEVEL 0 exit /B 1
        @cd ..
-       @$(CLEANTARGET)
+       @-$(CLEANTARGET)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to