always use regular make on msys2

This commit is contained in:
Brad Parker 2017-09-19 14:51:43 -04:00
parent cafeb043aa
commit 27e03192d8

View file

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