From 5f26ad6184e30d622d14aefe18016a97e089ce85 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 21 Nov 2018 14:35:00 +0100 Subject: [PATCH] fixup! mingw: replace mingw_startup() hack We do not actually need -mconsole; it is the default. But it hurts to have it, as it breaks the assumption of the mingw-w64-git package that it can reuse the flags to link git-bash.exe. So let's remove it. Signed-off-by: Johannes Schindelin --- config.mak.uname | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mak.uname b/config.mak.uname index fa44d2bfe8..c820bc9045 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -584,7 +584,7 @@ ifneq (,$(findstring MINGW,$(uname_S))) ETAGS_TARGET = ETAGS NO_POSIX_GOODIES = UnfortunatelyYes DEFAULT_HELP_FORMAT = html - BASIC_LDFLAGS += -municode -mconsole + BASIC_LDFLAGS += -municode COMPAT_CFLAGS += -DNOGDI -Icompat -Icompat/win32 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\" COMPAT_OBJS += compat/mingw.o compat/winansi.o \