Commit c7deb74f authored by Sylvestre Ledru's avatar Sylvestre Ledru
Browse files

Bug 1670807 - Look for gm4 in addition to m4 r=firefox-build-system-reviewers,rstewart

parent 256a71d3
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -5,7 +5,13 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.


m4 = check_prog("M4", ("m4",))
m4 = check_prog(
    "M4",
    (
        "gm4",
        "m4",
    ),
)


@depends(mozconfig)