This is an automated email from the ASF dual-hosted git repository.
markt 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 0da74818b7 Only build with makensis when configured
0da74818b7 is described below
commit 0da74818b71efe5333b0e778ca3edab208acbdd1
Author: Mark Thomas <[email protected]>
AuthorDate: Tue Mar 4 16:35:43 2025 +0000
Only build with makensis when configured
---
build.xml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/build.xml b/build.xml
index db3fe26b41..1e14508a4f 100644
--- a/build.xml
+++ b/build.xml
@@ -2602,10 +2602,14 @@ Apache Tomcat ${version} native binaries for Win64
AMD64/EMT64 platform.
</or>
</condition>
<condition property="nsis.executable.unix"
value="${nsis.bin.home}/Bin/makensis">
- <available file="makensis" filepath="${nsis.bin.home}/Bin"/>
+ <and>
+ <equals arg1="${nsis.tool}" arg2="makensis" forcestring="true"/>
+ <available file="makensis" filepath="${nsis.bin.home}/Bin"/>
+ </and>
</condition>
<condition property="nsis.executable.unix" value="makensis">
<and>
+ <equals arg1="${nsis.tool}" arg2="makensis" forcestring="true"/>
<available file="makensis" filepath="${env.PATH}"/>
<not>
<available file="makensis" filepath="${nsis.bin.home}/Bin"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]