Merge pull request #1214 from heuripedes/master

(qb) Fix OS detection under MinGW
This commit is contained in:
Twinaphex 2014-10-29 00:28:21 +01:00
commit a43d338422

View File

@ -19,9 +19,9 @@ if [ -z "$CROSS_COMPILE" ] || [ -z "$OS" ]; then
'Linux') OS='Linux';;
*'BSD') OS='BSD';;
'Darwin') OS='Darwin';;
'MINGW32'*) OS='MinGW';;
'CYGWIN'*) OS='Cygwin';;
'Haiku') OS='Haiku';;
'MINGW'*) OS='Win32';;
*) OS="Win32";;
esac
fi