From 0af586aa400144f4d39ca29de89106dd26b9faa8 Mon Sep 17 00:00:00 2001 From: "T. Joseph Carter" Date: Thu, 19 Mar 2015 07:31:27 -0700 Subject: [PATCH] MingW-w64/MSYS2 uses "mingw32-make" for uname -s of "MINGW64_NT-6.1" --- libretro-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-build.sh b/libretro-build.sh index 46c435f2..0afa688f 100755 --- a/libretro-build.sh +++ b/libretro-build.sh @@ -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