diff --git a/run-tests.sh b/run-tests.sh index 34c27a2..64f0ddc 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -33,6 +33,13 @@ MAKE=make if command -v gmake >/dev/null; then MAKE=gmake fi +if [ "$(uname)" = "Windows_NT" ]; then + # In busybox, prefer our mingw32-make. The plain "make" may be busybox's + # primitive make (although in our builds of busybox, we disable that), + # and "gmake" can be a different build from e.g. Strawberry Perl further + # back in PATH. + MAKE=mingw32-make +fi case $(uname) in Darwin)