This is an automated email from the ASF dual-hosted git repository. rjung pushed a commit to branch 11.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/11.0.x by this push: new b9712a33d9 Fix skip.installer=true build. b9712a33d9 is described below commit b9712a33d9644a3966cdfa03f7fff60dc3313f04 Author: Rainer Jung <rainer.j...@kippdata.de> AuthorDate: Fri Feb 28 20:31:26 2025 +0100 Fix skip.installer=true build. ant target dependencies run even if the target body itself is skipped via unless. So make sure that dependencies use the same "unless". It was removed in error during the installer target refactoring to support makensis on non-Windows. --- build.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.xml b/build.xml index d0e6a5065e..183445696c 100644 --- a/build.xml +++ b/build.xml @@ -2566,7 +2566,7 @@ </copy> </target> - <target name="-installer-pre-init"> + <target name="-installer-pre-init" unless="skip.installer"> <property environment="env" /> <condition property="wine.ok"> <or> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org