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 ab91bce  Check for return value from subtask
ab91bce is described below

commit ab91bced3b7077075395e5a279d5b9e153a329cc
Author: Mladen Turk <mt...@apache.org>
AuthorDate: Sat Jun 13 13:16:24 2020 +0200

    Check for return value from subtask
---
 native/iis/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/native/iis/Makefile b/native/iis/Makefile
index d92a1d4..7e22e48 100644
--- a/native/iis/Makefile
+++ b/native/iis/Makefile
@@ -89,6 +89,7 @@ $(BUILDRES): ..\common\jk.rc
 $(PCRELIB):
        @cd .\pcre
        $(MAKE)
+       @if not ERRORLEVEL 0 exit /B 1
        @cd ..
 
 $(BUILDBIN): $(PCRELIB) $(WORKDIR) $(OBJECTS) $(BUILDRES)
@@ -97,8 +98,9 @@ $(BUILDBIN): $(PCRELIB) $(WORKDIR) $(OBJECTS) $(BUILDRES)
                $(MT) -nologo -manifest $(BUILDMFT) 
-outputresource:$(BUILDBIN);2
 
 clean:
-       @$(CLEANTARGET)
        @cd .\pcre
        $(MAKE) clean
+       @if not ERRORLEVEL 0 exit /B 1
        @cd ..
+       @$(CLEANTARGET)
 


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

Reply via email to