Issue #2512 - Part 4 - Look for gm4 in addition to m4.

https://bugzilla.mozilla.org/show_bug.cgi?id=1670807
This commit is contained in:
Brian Smith 2024-05-06 20:34:25 -05:00 • committed by wuggy
commit 7b01d356f9

View file

@ -10,7 +10,13 @@ def encoded_open(path, mode):
return codecs.open(path, mode, encoding)
m4 = check_prog('M4', ('m4',))
m4 = check_prog(
"M4",
(
"gm4",
"m4",
),
)
@depends('OLD_CONFIGURE', mozconfig, awk, m4, check_build_environment, shell,
old_configure_assignments, build_project)