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 77ce61c048 Fix skip.installer=true build.
77ce61c048 is described below

commit 77ce61c048bafabfe4feecdbab4a41e8a6658f90
Author: Rainer Jung <rainer.j...@kippdata.de>
AuthorDate: Fri Feb 28 20:26:14 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 eaa9edcda1..815f976487 100644
--- a/build.xml
+++ b/build.xml
@@ -2613,7 +2613,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

Reply via email to