From 27e03192d8d9c9387d6a9706e7f43d791a9becec Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Tue, 19 Sep 2017 14:51:43 -0400 Subject: [PATCH] always use regular make on msys2 --- libretro-build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libretro-build.sh b/libretro-build.sh index bee58eaf..ccf6a357 100755 --- a/libretro-build.sh +++ b/libretro-build.sh @@ -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