From 8055bf07c213abcb129de08d0f0f36215749ef12 Mon Sep 17 00:00:00 2001 From: iahung2 <137106081+iahung2@users.noreply.github.com> Date: Fri, 18 Aug 2023 12:38:31 +0700 Subject: [PATCH] Update Makefile.config Fix build on MSYS2 (MSYS) --- Makefile.config | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.config b/Makefile.config index 1e768d7..f4d9b92 100644 --- a/Makefile.config +++ b/Makefile.config @@ -104,6 +104,11 @@ ifeq ($(OSNAME),Cygwin) target:= Cygwin endif # ($(OSNAME),Cygwin) +# MSYS2 (MSYS) is a fork of Cygwin +ifeq ($(OSNAME),Msys) +target:= Cygwin +endif # ($(OSNAME),Msys) + ############################################################################## #-=-=-=-=-=-=-=-=- You may want to change some values below -=-=-=-=-=-=-=-=-#