This is an automated email from the ASF dual-hosted git repository. rjung pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 824d908f5e More skip.installer, remove unless in depends-only target 824d908f5e is described below commit 824d908f5ee41c15e4f96a79fdb54f2f936ba935 Author: Rainer Jung <rainer.j...@kippdata.de> AuthorDate: Thu Mar 6 23:14:14 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 e551de90d8..1d06114e46 100644 --- a/build.xml +++ b/build.xml @@ -2691,8 +2691,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" @@ -2719,7 +2718,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}"/> @@ -2728,7 +2729,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