From 17d2c379cd67b10fe02236579ec44b6881f8d806 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Fri, 20 Sep 2019 15:47:02 +0000 Subject: [PATCH] Restore an old workaround from the original portable branch This can be removed when MSYS2 stops being garbage, and fixes this upstream. See https://github.com/msys2/MINGW-packages/issues/4004 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 543c41a2..95654b0c 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ CXXFLAGS += -std=c++98 -MMD -MP -MF $@.d `$(PKG_CONFIG) sdl2 --cflags` `$(PKG_CO ifeq ($(STATIC), 1) LDFLAGS += -static - LIBS += `$(PKG_CONFIG) sdl2 --libs --static` `$(PKG_CONFIG) freetype2 --libs --static` + LIBS += `$(PKG_CONFIG) sdl2 --libs --static` `$(PKG_CONFIG) freetype2 --libs --static` -lfreetype else LIBS += `$(PKG_CONFIG) sdl2 --libs` `$(PKG_CONFIG) freetype2 --libs` endif