Assume system is "Windows" when uname says "MSYS"

Needed for building with pd-lib-builder on AppVeyor.
This commit is contained in:
katjav 2018-01-21 14:59:38 +01:00
parent 231e344b44
commit e4d42f2227

View file

@ -445,7 +445,7 @@ ifeq ($(uname), Darwin)
system = Darwin
endif
ifeq ($(findstring MINGW, $(uname)), MINGW)
ifeq ($(findstring $(uname), MINGW MSYS), $(uname))
system = Windows
endif