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 /admin | |
| parent | f1f924b61976585c693f1f18445889ae891e2211 (diff) | |
| download | emacs-c4444d16dcc6b1cf2ac9e2c0bb20e3f5a54bdea1.tar.gz emacs-c4444d16dcc6b1cf2ac9e2c0bb20e3f5a54bdea1.zip | |
Rename configure.in to configure.ac.
Fixes: debbugs:11603
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 7 | ||||
| -rw-r--r-- | admin/admin.el | 2 | ||||
| -rwxr-xr-x | admin/quick-install-emacs | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index 53b6143c82c..5ae49cd4b7a 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2012-07-09 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Rename configure.in to configure.ac (Bug#11603). | ||
| 4 | * admin.el (set-version): | ||
| 5 | * quick-install-emacs (VERSION): | ||
| 6 | Get version number from configure.ac, not configure.in. | ||
| 7 | |||
| 1 | 2012-07-06 Paul Eggert <eggert@cs.ucla.edu> | 8 | 2012-07-06 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 9 | ||
| 3 | Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786). | 10 | Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786). |
diff --git a/admin/admin.el b/admin/admin.el index 9fcc5795d21..6d729214bd0 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -62,7 +62,7 @@ Root must be the root of an Emacs source tree." | |||
| 62 | (set-version-in-file root "README" version | 62 | (set-version-in-file root "README" version |
| 63 | (rx (and "version" (1+ space) | 63 | (rx (and "version" (1+ space) |
| 64 | (submatch (1+ (in "0-9.")))))) | 64 | (submatch (1+ (in "0-9.")))))) |
| 65 | (set-version-in-file root "configure.in" version | 65 | (set-version-in-file root "configure.ac" version |
| 66 | (rx (and "AC_INIT" (1+ (not (in ?,))) | 66 | (rx (and "AC_INIT" (1+ (not (in ?,))) |
| 67 | ?, (0+ space) | 67 | ?, (0+ space) |
| 68 | (submatch (1+ (in "0-9.")))))) | 68 | (submatch (1+ (in "0-9.")))))) |
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs index 7004e8f1b27..4abef102dc4 100755 --- a/admin/quick-install-emacs +++ b/admin/quick-install-emacs | |||
| @@ -171,9 +171,9 @@ test x"$prefix" = x && { prefix="`get_config_var prefix`" || exit 4 ; } | |||
| 171 | test x"$ARCH" = x && { ARCH="`get_config_var host`" || exit 4 ; } | 171 | test x"$ARCH" = x && { ARCH="`get_config_var host`" || exit 4 ; } |
| 172 | 172 | ||
| 173 | VERSION=` | 173 | VERSION=` |
| 174 | sed -n 's/^AC_INIT(emacs,[ ]*\([^ )]*\).*/\1/p' <$SRC/configure.in | 174 | sed -n 's/^AC_INIT(emacs,[ ]*\([^ )]*\).*/\1/p' <$SRC/configure.ac |
| 175 | ` || exit 4 | 175 | ` || exit 4 |
| 176 | test -n "$VERSION" || { echo >&2 "$me: no version in configure.in"; exit 4; } | 176 | test -n "$VERSION" || { echo >&2 "$me: no version in configure.ac"; exit 4; } |
| 177 | 177 | ||
| 178 | DST_SHARE="$prefix/share/emacs/$VERSION" | 178 | DST_SHARE="$prefix/share/emacs/$VERSION" |
| 179 | DST_BIN="$prefix/bin" | 179 | DST_BIN="$prefix/bin" |