Skip to content
Snippets Groups Projects
Commit 9dffed84 authored by Mike Hommey's avatar Mike Hommey
Browse files

Bug 1544779 - Prioritize mozmake over mingw32-make. r=firefox-build-system-reviewers,andi

parent d89b4704
No related branches found
No related tags found
No related merge requests found
......@@ -597,12 +597,10 @@ option(env="MAKE", nargs=1, help="Path to GNU make")
@depends("MAKE", host)
def possible_makes(make, host):
candidates = []
if host.kernel == "WINNT":
candidates.append("mingw32-make")
if make:
candidates.append(make[0])
if host.kernel == "WINNT":
candidates.extend(("mozmake", "make", "gmake"))
candidates.extend(("mozmake", "mingw32-make", "make", "gmake"))
else:
candidates.extend(("gmake", "make"))
return candidates
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment