aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorJim Blandy1993-05-29 19:38:45 +0000
committerJim Blandy1993-05-29 19:38:45 +0000
commitb4e84d5d36e2dcbb431955af2e0ad45d79f56ff1 (patch)
tree010b85cb2d06f36a8437ea9004adb53da430bdc2 /make-dist
parentb305e8e5807606c7ee59447cd7ed95ae3e5353c4 (diff)
downloademacs-b4e84d5d36e2dcbb431955af2e0ad45d79f56ff1.tar.gz
emacs-b4e84d5d36e2dcbb431955af2e0ad45d79f56ff1.zip
* make-dist: Rebuild configure if configure.in is newer.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist7
1 files changed, 7 insertions, 0 deletions
diff --git a/make-dist b/make-dist
index e671cc0964c..7742f6afcc1 100755
--- a/make-dist
+++ b/make-dist
@@ -97,6 +97,13 @@ if [ "${bogosities}" != "" ]; then
97fi 97fi
98rm -f /tmp/el /tmp/elc 98rm -f /tmp/el /tmp/elc
99 99
100### Make sure configure is newer than configure.in.
101if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
102 echo "`./configure.in' seems to be newer than `./configure.'" >&2
103 echo "Attempting to run autoconf." >&2
104 autoconf
105fi
106
100echo "Creating staging directory: \`${tempparent}'" 107echo "Creating staging directory: \`${tempparent}'"
101mkdir ${tempparent} 108mkdir ${tempparent}
102emacsname="emacs-${version}${new_extension}" 109emacsname="emacs-${version}${new_extension}"