mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 10:27:32 +09:00
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:
parent
09347d9cc6
commit
7b01d356f9
1 changed files with 7 additions and 1 deletions
|
|
@ -10,7 +10,13 @@ def encoded_open(path, mode):
|
||||||
return codecs.open(path, mode, encoding)
|
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,
|
@depends('OLD_CONFIGURE', mozconfig, awk, m4, check_build_environment, shell,
|
||||||
old_configure_assignments, build_project)
|
old_configure_assignments, build_project)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue