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

markt 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 ac5ee53e3d Ensure expected behaviour if skip.build.java.version is 
defined as false
ac5ee53e3d is described below

commit ac5ee53e3d3656f2a4cb2a8119b7e39e1f745db4
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue Jul 16 17:59:48 2024 +0100

    Ensure expected behaviour if skip.build.java.version is defined as false
---
 build.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.xml b/build.xml
index 64d09ca245..70280c8e89 100644
--- a/build.xml
+++ b/build.xml
@@ -3959,7 +3959,7 @@ Read the Building page on the Apache Tomcat documentation 
site for details on ho
     </antcall>
   </target>
 
-  <target name="setup-bnd" depends="download-bnd" 
unless="skip.build.java.version">
+  <target name="setup-bnd" depends="download-bnd" 
unless="${skip.build.java.version}">
     <!-- Add bnd tasks to project -->
     <path id="bnd.classpath">
       <fileset file="${bnd.jar}" />
@@ -4034,7 +4034,7 @@ Read the Building page on the Apache Tomcat documentation 
site for details on ho
     </sequential>
   </macrodef>
 
-  <target name="add-osgi" if="${addOSGi}" unless="skip.build.java.version">
+  <target name="add-osgi" if="${addOSGi}" unless="${skip.build.java.version}" >
     <echo message="add-osgi ${jarfile} ${addOSGi}"></echo>
     <local name="filename"/>
     <basename property="filename" file="${jarfile}"/>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to