summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2020-03-14 02:51:33 -0400
committerJay Satiro <raysatiro@yahoo.com>2020-03-14 19:08:17 -0400
commit67f3f6cff19ed323849280316c592969ab97ee21 (patch)
treed7658f9cbf4a36b780e80efb8253cb56703d5164 /lib
parent3bfda07004a5739fb306e55cb9529ba3de35fbdb (diff)
downloadcurl-67f3f6cff19ed323849280316c592969ab97ee21.tar.gz
Makefile.m32: Improve windres parameter compatibility
- s/COFF/coff/ Some versions of windres do not recognize uppercase COFF as a valid way to specify the COFF output format. Reported-by: Steven Penny Fixes https://github.com/curl/curl/issues/5099 Closes https://github.com/curl/curl/pull/5101
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.m322
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.m32 b/lib/Makefile.m32
index ac6b3de63..fe8701bdb 100644
--- a/lib/Makefile.m32
+++ b/lib/Makefile.m32
@@ -99,7 +99,7 @@ LDFLAGS = $(CURL_LDFLAG_EXTRAS) $(CURL_LDFLAG_EXTRAS_DLL) -s
AR = $(CURL_AR)
RANLIB = $(CURL_RANLIB)
RC = $(CROSSPREFIX)windres
-RCFLAGS = --include-dir=$(PROOT)/include -DDEBUGBUILD=0 -O COFF
+RCFLAGS = --include-dir=$(PROOT)/include -DDEBUGBUILD=0 -O coff
STRIP = $(CROSSPREFIX)strip -g
# Set environment var ARCH to your architecture to override autodetection.