diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2020-03-14 02:51:33 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2020-03-14 19:08:17 -0400 |
commit | 67f3f6cff19ed323849280316c592969ab97ee21 (patch) | |
tree | d7658f9cbf4a36b780e80efb8253cb56703d5164 /src | |
parent | 3bfda07004a5739fb306e55cb9529ba3de35fbdb (diff) |
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 'src')
-rw-r--r-- | src/Makefile.m32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.m32 b/src/Makefile.m32 index e13db04b9..f34d96437 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -107,7 +107,7 @@ CFLAGS += -fno-strict-aliasing LDFLAGS = $(CURL_LDFLAG_EXTRAS) $(CURL_LDFLAG_EXTRAS_EXE) -s AR = $(CURL_AR) RC = $(CROSSPREFIX)windres -RCFLAGS = --include-dir=$(PROOT)/include -O COFF -DCURL_EMBED_MANIFEST +RCFLAGS = --include-dir=$(PROOT)/include -O coff -DCURL_EMBED_MANIFEST STRIP = $(CROSSPREFIX)strip -g # We may need these someday |