From: Mike Pall Date: Thu, 10 Jan 2019 11:02:15 +0000 (+0100) Subject: Better detection of MinGW build. X-Git-Tag: v2.1.ROLLING~308^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3404183e2387f48e3464bd79116d3e8021ca781e;p=thirdparty%2FLuaJIT.git Better detection of MinGW build. --- diff --git a/src/Makefile b/src/Makefile index 24e8c0e0..962aa946 100644 --- a/src/Makefile +++ b/src/Makefile @@ -165,6 +165,10 @@ else HOST_SYS= Windows HOST_MSYS= mingw endif + ifneq (,$(findstring MSYS,$(HOST_SYS))) + HOST_SYS= Windows + HOST_MSYS= mingw + endif ifneq (,$(findstring CYGWIN,$(HOST_SYS))) HOST_SYS= Windows HOST_MSYS= cygwin