MingW-w64/MSYS2 uses "mingw32-make" for uname -s of "MINGW64_NT-6.1"

This commit is contained in:
T. Joseph Carter 2015-03-19 07:31:27 -07:00
parent d77b85cc24
commit 0af586aa40

View File

@ -33,7 +33,7 @@ if [ "$HOST_CC" ]; then
fi
if [ -z "$MAKE" ]; then
if uname -s | grep -i MINGW32 > /dev/null 2>&1; then
if uname -s | grep -i MINGW > /dev/null 2>&1; then
MAKE=mingw32-make
else
if type gmake > /dev/null 2>&1; then