diff options
| author | Paul Eggert | 2012-07-08 21:52:49 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-07-08 21:52:49 -0700 |
| commit | c4444d16dcc6b1cf2ac9e2c0bb20e3f5a54bdea1 (patch) | |
| tree | 712790cc90ed29dda310c6b461ff3b6a7b04947d /make-dist | |
| parent | f1f924b61976585c693f1f18445889ae891e2211 (diff) | |
| download | emacs-c4444d16dcc6b1cf2ac9e2c0bb20e3f5a54bdea1.tar.gz emacs-c4444d16dcc6b1cf2ac9e2c0bb20e3f5a54bdea1.zip | |
Rename configure.in to configure.ac.
Fixes: debbugs:11603
Diffstat (limited to 'make-dist')
| -rwxr-xr-x | make-dist | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -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. |
| 149 | version=` | 149 | version=` |
| 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= |
| 152 | if [ ! "${version}" ]; then | 152 | if [ ! "${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 | ||
| 231 | if [ $update = yes ]; then | 231 | if [ $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. |
| 274 | echo "Making links to top-level files" | 274 | echo "Making links to top-level files" |
| 275 | ln INSTALL README BUGS ${tempdir} | 275 | ln INSTALL README BUGS ${tempdir} |
| 276 | ln ChangeLog Makefile.in configure configure.in ${tempdir} | 276 | ln ChangeLog Makefile.in configure configure.ac ${tempdir} |
| 277 | ln config.bat make-dist .dir-locals.el ${tempdir} | 277 | ln config.bat make-dist .dir-locals.el ${tempdir} |
| 278 | ln aclocal.m4 ${tempdir} | 278 | ln aclocal.m4 ${tempdir} |
| 279 | 279 | ||