Patch from Joe Orton <joe@manyfish.co.uk>:

Allow the environment to specify a different autoconf and autoheader.
This is useful when Expat is bundled into another program, which is
being configured using something other than the autoconf/autoheader in
the path.
This commit is contained in:
Greg Stein 2002-05-10 00:10:57 +00:00
parent a0a093184c
commit cd48fb33d6

View File

@ -35,14 +35,14 @@ rm -f aclocal.m4
# Generate the autoconf header template (config.h.in) and ./configure
#
echo "Creating config.h.in ..."
autoheader
${AUTOHEADER:-autoheader}
echo "Creating configure ..."
### do some work to toss config.cache?
autoconf
${AUTOCONF:-autoconf}
# toss this; it gets created by autoconf on some systems
rm -rf autom4te.cache
rm -rf autom4te*.cache
# exit with the right value, so any calling script can continue
exit 0