This is an automated email from the ASF dual-hosted git repository.

rjung pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 8391012537 Fix skip.installer=true build.
8391012537 is described below

commit 8391012537a1dd266c70f21cd766326f54275068
Author: Rainer Jung <rainer.j...@kippdata.de>
AuthorDate: Fri Feb 28 20:33:30 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 8b9f85e0cd..d2182dd600 100644
--- a/build.xml
+++ b/build.xml
@@ -2591,7 +2591,7 @@ Apache Tomcat ${version} native binaries for Win64 
AMD64/EMT64 platform.
     </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

Reply via email to