diff options
author | Mike Pall <mike> | 2019-01-10 12:02:15 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2019-01-10 12:02:15 +0100 |
commit | 3404183e2387f48e3464bd79116d3e8021ca781e (patch) | |
tree | b356937dc24ab1baffc4ba69c5fc9bc6dda30ef6 /src | |
parent | b025b01c5b9d23f6218c7d72b7aafa3f1ab1e08a (diff) | |
download | luajit-3404183e2387f48e3464bd79116d3e8021ca781e.tar.gz luajit-3404183e2387f48e3464bd79116d3e8021ca781e.tar.bz2 luajit-3404183e2387f48e3464bd79116d3e8021ca781e.zip |
Better detection of MinGW build.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 24e8c0e0..962aa946 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -165,6 +165,10 @@ else | |||
165 | HOST_SYS= Windows | 165 | HOST_SYS= Windows |
166 | HOST_MSYS= mingw | 166 | HOST_MSYS= mingw |
167 | endif | 167 | endif |
168 | ifneq (,$(findstring MSYS,$(HOST_SYS))) | ||
169 | HOST_SYS= Windows | ||
170 | HOST_MSYS= mingw | ||
171 | endif | ||
168 | ifneq (,$(findstring CYGWIN,$(HOST_SYS))) | 172 | ifneq (,$(findstring CYGWIN,$(HOST_SYS))) |
169 | HOST_SYS= Windows | 173 | HOST_SYS= Windows |
170 | HOST_MSYS= cygwin | 174 | HOST_MSYS= cygwin |