aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorPaul Eggert2012-07-08 21:52:49 -0700
committerPaul Eggert2012-07-08 21:52:49 -0700
commitc4444d16dcc6b1cf2ac9e2c0bb20e3f5a54bdea1 (patch)
tree712790cc90ed29dda310c6b461ff3b6a7b04947d /make-dist
parentf1f924b61976585c693f1f18445889ae891e2211 (diff)
downloademacs-c4444d16dcc6b1cf2ac9e2c0bb20e3f5a54bdea1.tar.gz
emacs-c4444d16dcc6b1cf2ac9e2c0bb20e3f5a54bdea1.zip
Rename configure.in to configure.ac.
Fixes: debbugs:11603
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist8
1 files changed, 4 insertions, 4 deletions
diff --git a/make-dist b/make-dist
index 0582f994672..cc14ff3987b 100755
--- a/make-dist
+++ b/make-dist
@@ -147,7 +147,7 @@ fi
147 147
148### Find out which version of Emacs this is. 148### Find out which version of Emacs this is.
149version=` 149version=`
150 sed -n 's/^AC_INIT(emacs,[ ]*\([^ )]*\).*/\1/p' <configure.in 150 sed -n 's/^AC_INIT(emacs,[ ]*\([^ )]*\).*/\1/p' <configure.ac
151` || version= 151` || version=
152if [ ! "${version}" ]; then 152if [ ! "${version}" ]; then
153 echo "${progname}: can't find current Emacs version in \`./src/emacs.c'" >&2 153 echo "${progname}: can't find current Emacs version in \`./src/emacs.c'" >&2
@@ -230,13 +230,13 @@ fi
230 230
231if [ $update = yes ]; then 231if [ $update = yes ]; then
232 232
233 ## Make sure configure is newer than configure.in, etc. 233 ## Make sure configure is newer than configure.ac, etc.
234 ## It is better to let autoreconf do what is needed than 234 ## It is better to let autoreconf do what is needed than
235 ## for us to try and duplicate all its checks. 235 ## for us to try and duplicate all its checks.
236 echo "Running autoreconf" 236 echo "Running autoreconf"
237 autoreconf -i -I m4 || { x=$?; echo Autoreconf FAILED! >&2; exit $x; } 237 autoreconf -i -I m4 || { x=$?; echo Autoreconf FAILED! >&2; exit $x; }
238 238
239 ## Make sure src/stamp-h.in is newer than configure.in. 239 ## Make sure src/stamp-h.in is newer than configure.ac.
240 rm -f src/stamp-h.in 240 rm -f src/stamp-h.in
241 echo timestamp > src/stamp-h.in 241 echo timestamp > src/stamp-h.in
242 242
@@ -273,7 +273,7 @@ mkdir ${tempdir}
273### README while the rest of the tar file is still unpacking. Whoopee. 273### README while the rest of the tar file is still unpacking. Whoopee.
274echo "Making links to top-level files" 274echo "Making links to top-level files"
275ln INSTALL README BUGS ${tempdir} 275ln INSTALL README BUGS ${tempdir}
276ln ChangeLog Makefile.in configure configure.in ${tempdir} 276ln ChangeLog Makefile.in configure configure.ac ${tempdir}
277ln config.bat make-dist .dir-locals.el ${tempdir} 277ln config.bat make-dist .dir-locals.el ${tempdir}
278ln aclocal.m4 ${tempdir} 278ln aclocal.m4 ${tempdir}
279 279