* make-dist: Rebuild configure if configure.in is newer.

This commit is contained in:
Jim Blandy 1993-05-29 19:38:45 +00:00
parent b305e8e580
commit b4e84d5d36

View file

@ -97,6 +97,13 @@ if [ "${bogosities}" != "" ]; then
fi
rm -f /tmp/el /tmp/elc
### Make sure configure is newer than configure.in.
if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
echo "`./configure.in' seems to be newer than `./configure.'" >&2
echo "Attempting to run autoconf." >&2
autoconf
fi
echo "Creating staging directory: \`${tempparent}'"
mkdir ${tempparent}
emacsname="emacs-${version}${new_extension}"