This is an automated email from the ASF dual-hosted git repository. rjung pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new 6b9f84aff6 More skip.installer, remove unless in depends-only target 6b9f84aff6 is described below commit 6b9f84aff68f912d5638a1a409957957b6ef6e72 Author: Rainer Jung <rainer.j...@kippdata.de> AuthorDate: Thu Mar 6 23:15:32 2025 +0100 More skip.installer, remove unless in depends-only target --- build.xml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.xml b/build.xml index 1fea2c637c..2d2e697e57 100644 --- a/build.xml +++ b/build.xml @@ -2672,8 +2672,7 @@ You may need a custom build of makensis. Instructions for this may be found in B </target> <target name="-installer-checks" - depends="-installer-check-available,-installer-check-version" - unless="${installer.ok}"> + depends="-installer-check-available,-installer-check-version"> </target> <target name="-installer-prep" @@ -2700,7 +2699,9 @@ You may need a custom build of makensis. Instructions for this may be found in B </touch> </target> - <target name="-installer-wine" if="${wine.ok}"> + <target name="-installer-wine" + if="${wine.ok}" + unless="${skip.installer}"> <exec dir="${tomcat.dist}" executable="wine" osfamily="unix"> <arg value="${nsis.executable.windows}"/> <arg value="/DNSISDIR=${nsis.bin.home}"/> @@ -2709,7 +2710,9 @@ You may need a custom build of makensis. Instructions for this may be found in B </exec> </target> - <target name="-installer-makensis" if="nsis.executable.unix"> + <target name="-installer-makensis" + if="nsis.executable.unix" + unless="${skip.installer}"> <echo message="Using makensis: ${nsis.executable.unix} version [${nsis.executable.unix.version}]"/> <exec dir="${tomcat.dist}" executable="${nsis.executable.unix}" osfamily="unix"> <arg value="-DNSISDIR=${nsis.bin.home}"/> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org