mirror of https://github.com/snes9xgit/snes9x.git
reorder OS detection
This commit is contained in:
parent
0f69665d17
commit
0a7c84e767
|
@ -2,12 +2,12 @@ ifeq ($(platform),)
|
|||
platform = unix
|
||||
ifeq ($(shell uname -a),)
|
||||
platform = win
|
||||
else ifneq ($(findstring Darwin,$(shell uname -a)),)
|
||||
platform = osx
|
||||
else ifneq ($(findstring MINGW,$(shell uname -a)),)
|
||||
platform = win
|
||||
else ifneq ($(findstring win,$(shell uname -a)),)
|
||||
platform = win
|
||||
else ifneq ($(findstring Darwin,$(shell uname -a)),)
|
||||
platform = osx
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue