summaryrefslogtreecommitdiffstats
path: root/src/Make_cyg_ming.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-01-25 19:18:02 +0100
committerBram Moolenaar <Bram@vim.org>2021-01-25 19:18:02 +0100
commit5c829bf229de463657e4ba1de6c4ee91899de14e (patch)
tree14ab7ec4188e5a46614ce6994ec4283d81e0e423 /src/Make_cyg_ming.mak
parentab55f11d9bc776d546794748bc62ac47d5340c2e (diff)
patch 8.2.2408: MinGW: "--preprocessor" flag no longer supportedv8.2.2408
Problem: MinGW: "--preprocessor" flag no longer supported. Solution: Remove the flag, use the defaults. (Christopher Wellons, closes #7741)
Diffstat (limited to 'src/Make_cyg_ming.mak')
-rw-r--r--src/Make_cyg_ming.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak
index b6dd928b12..8895d2797f 100644
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -220,7 +220,6 @@ WINDRES := $(CROSS_COMPILE)windres
else
WINDRES := windres
endif
-WINDRES_CC = $(CC)
# Get the default ARCH.
ifndef ARCH
@@ -514,7 +513,8 @@ endif
CFLAGS = -I. -Iproto $(DEFINES) -pipe -march=$(ARCH) -Wall
CXXFLAGS = -std=gnu++11
-WINDRES_FLAGS = --preprocessor="$(WINDRES_CC) -E -xc" -DRC_INVOKED
+# This used to have --preprocessor, but it's no longer supported
+WINDRES_FLAGS =
EXTRA_LIBS =
ifdef GETTEXT