aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmake-dist2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-dist b/make-dist
index 949f6eadd48..401d7462fa4 100755
--- a/make-dist
+++ b/make-dist
@@ -133,7 +133,7 @@ rm -f /tmp/el /tmp/elc
133if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then 133if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
134 echo "\`./configure.in' is newer than \`./configure'" >&2 134 echo "\`./configure.in' is newer than \`./configure'" >&2
135 echo "Running autoconf" >&2 135 echo "Running autoconf" >&2
136 autoconf 136 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; }
137fi 137fi
138 138
139### Update getdate.c. 139### Update getdate.c.