This is an automated email from the ASF dual-hosted git repository.
damjan pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new a5bfa95fc5 Fix the comparison operator in the curl makefile.
a5bfa95fc5 is described below
commit a5bfa95fc5148caf1c89284e8d6eee4bd2186d88
Author: Damjan Jovanovic <[email protected]>
AuthorDate: Sun Feb 2 16:07:40 2025 +0200
Fix the comparison operator in the curl makefile.
It should use "==" not "=".
Patch by: me
---
main/curl/makefile.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main/curl/makefile.mk b/main/curl/makefile.mk
index 96bcd80dab..4b89d1a196 100644
--- a/main/curl/makefile.mk
+++ b/main/curl/makefile.mk
@@ -120,7 +120,7 @@ BUILD_ACTION=CC="cl.exe" nmake -f Makefile.vc mode=dll VC=9
DEBUG=yes EXCFLAGS=$
.IF "$(CPUNAME)"=="INTEL"
-.IF "$(debug)"=""
+.IF "$(debug)"==""
OUT2BIN=$(BUILD_DIR)$/../builds/libcurl-vc9-X86-release-dll-ssl-dll-zlib-dll-ipv6-sspi/bin/libcurl.dll
OUT2LIB=$(BUILD_DIR)$/../builds/libcurl-vc9-X86-release-dll-ssl-dll-zlib-dll-ipv6-sspi/lib/libcurl.lib
.ELSE
@@ -130,7 +130,7 @@
OUT2LIB=$(BUILD_DIR)$/../builds/libcurl-vc9-X86-debug-dll-ssl-dll-zlib-dll-ipv6-
.ELIF "$(CPUNAME)"=="X86_64"
-.IF "$(debug)"=""
+.IF "$(debug)"==""
OUT2BIN=$(BUILD_DIR)$/../builds/libcurl-vc9-X64-release-dll-ssl-dll-zlib-dll-ipv6-sspi/bin/libcurl.dll
OUT2LIB=$(BUILD_DIR)$/../builds/libcurl-vc9-X64-release-dll-ssl-dll-zlib-dll-ipv6-sspi/lib/libcurl.lib
.ELSE