mirror of
https://github.com/libretro/libretro-super
synced 2024-12-26 18:26:06 +00:00
always use regular make on msys2
This commit is contained in:
parent
cafeb043aa
commit
27e03192d8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user