Fix for OS detection on Win32.

This commit is contained in:
John Popplewell 2008-06-19 16:00:52 +00:00
parent f70f93024e
commit 50e262d739

View file

@ -16,7 +16,7 @@ MAGIC_API_VERSION:=0x00000001
# Need to know the OS
SYSNAME:=$(shell uname -s)
ifeq ($(SYSNAME),MINGW32_NT-5.0)
ifeq ($(findstring MINGW32, $(SYSNAME)),MINGW32)
OS:=windows
else
ifeq ($(SYSNAME),Darwin)