always use regular make on msys2
This commit is contained in:
parent
cafeb043aa
commit
27e03192d8
|
@ -29,7 +29,9 @@ if [ "$HOST_CC" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$MAKE" ]; then
|
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
|
MAKE=mingw32-make
|
||||||
else
|
else
|
||||||
if type gmake > /dev/null 2>&1; then
|
if type gmake > /dev/null 2>&1; then
|
||||||
|
|
Loading…
Reference in New Issue