mirror of
https://github.com/mstorsjo/llvm-mingw
synced 2026-06-21 14:01:00 +00:00
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:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user