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 3eee70c8fb More skip.installer, remove unless in depends-only target
3eee70c8fb is described below

commit 3eee70c8fbe9fac3e98f8ec3b7e7276823136e04
Author: Rainer Jung <rainer.j...@kippdata.de>
AuthorDate: Thu Mar 6 23:15:05 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 fb8739c583..c1420c922b 100644
--- a/build.xml
+++ b/build.xml
@@ -2644,8 +2644,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"
@@ -2672,7 +2671,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}"/>
@@ -2681,7 +2682,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

Reply via email to