run-tests: Use mingw32-make in busybox

This is the make tool we'd expect to use in such a setup.
This commit is contained in:
Martin Storsjö
2025-12-05 10:16:38 +02:00
parent 98a14ed36f
commit 8220db557f
+7
View File
@@ -33,6 +33,13 @@ MAKE=make
if command -v gmake >/dev/null; then if command -v gmake >/dev/null; then
MAKE=gmake MAKE=gmake
fi 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 case $(uname) in
Darwin) Darwin)