This is an automated email from the ASF dual-hosted git repository.
rjung pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new b9d606c9d6 Fix skip.installer=true build.
b9d606c9d6 is described below
commit b9d606c9d6c42f6f5f2ae6d8d12ea45e3a972eef
Author: Rainer Jung <[email protected]>
AuthorDate: Fri Feb 28 20:32:33 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 a8b94771b7..a4fa6591d9 100644
--- a/build.xml
+++ b/build.xml
@@ -2594,7 +2594,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: [email protected]
For additional commands, e-mail: [email protected]