diff options
author | athenian200 <athenian200@outlook.com> | 2019-10-11 15:36:33 -0500 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2019-10-21 04:53:44 -0500 |
commit | 1982ae21e8cc5907e5a996e3d9945818b1a95670 (patch) | |
tree | 20831e90f8f0b8257fa7668730fd47ce7756e7e3 /old-configure.in | |
parent | fb195d6cc932b8aa0e2d423122bbd147ac25af39 (diff) | |
download | uxp-1982ae21e8cc5907e5a996e3d9945818b1a95670.tar.gz |
MoonchildProductions#1251 - Part 24: Remove temporary GNU M4 workaround.
We finally found where configure was failing. Apparently they just invoked m4 without regard for TOOLCHAIN_PREFIX. Easy to fix, difficult to find.
Diffstat (limited to 'old-configure.in')
-rw-r--r-- | old-configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/old-configure.in b/old-configure.in index c5b4f1efba..2530842168 100644 --- a/old-configure.in +++ b/old-configure.in @@ -761,7 +761,7 @@ case "$host" in HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX" HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O3}" ;; - + *) HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX" HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}" @@ -4146,7 +4146,7 @@ if test -f "${srcdir}/${MOZ_BUILD_APP}/configure.in" ; then _subconfigure_config_args="$ac_configure_args" } tmpscript=`$PYTHON -c 'import os, tempfile; print tempfile.mktemp(prefix="subscript.").replace(os.sep, "/")'` || exit 1 - m4 "${srcdir}/build/autoconf/subconfigure.m4" \ + ${TOOLCHAIN_PREFIX}m4 "${srcdir}/build/autoconf/subconfigure.m4" \ "${srcdir}/build/autoconf/altoptions.m4" \ "${srcdir}/${MOZ_BUILD_APP}/configure.in" > $tmpscript . $tmpscript |