diff options
| author | Glenn Morris | 2013-07-23 21:03:56 -0400 |
|---|---|---|
| committer | Glenn Morris | 2013-07-23 21:03:56 -0400 |
| commit | 1813e115ce75df597c45d3c4b5a6520fec5239d3 (patch) | |
| tree | dfb7bede0aa163801cb4548c27efc0818ab439c7 | |
| parent | 3d012865be24995904525eb1b12f51f4d95afcfc (diff) | |
| download | emacs-1813e115ce75df597c45d3c4b5a6520fec5239d3.tar.gz emacs-1813e115ce75df597c45d3c4b5a6520fec5239d3.zip | |
* configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.ac | 6 |
2 files changed, 6 insertions, 4 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-07-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS. | ||
| 4 | |||
| 1 | 2013-07-23 Glenn Morris <rgm@gnu.org> | 5 | 2013-07-23 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * configure.ac (etc, lisp): No need to create specially. | 7 | * configure.ac (etc, lisp): No need to create specially. |
diff --git a/configure.ac b/configure.ac index c58c283049c..b79f3e005dc 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -4862,8 +4862,7 @@ dnl Secondly, the GNU Coding standards require that one should be able | |||
| 4862 | dnl to run `make prefix=/some/where/else' and override the values set | 4862 | dnl to run `make prefix=/some/where/else' and override the values set |
| 4863 | dnl by configure. This also explains the `move-if-change' test and | 4863 | dnl by configure. This also explains the `move-if-change' test and |
| 4864 | dnl the use of force in the `epaths-force' rule in Makefile.in. | 4864 | dnl the use of force in the `epaths-force' rule in Makefile.in. |
| 4865 | AC_CONFIG_COMMANDS([epaths], [ | 4865 | AC_CONFIG_COMMANDS([src/epaths.h], [ |
| 4866 | echo creating src/epaths.h | ||
| 4867 | if test "${opsys}" = "mingw32"; then | 4866 | if test "${opsys}" = "mingw32"; then |
| 4868 | ${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force-w32 | 4867 | ${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force-w32 |
| 4869 | else | 4868 | else |
| @@ -4871,9 +4870,8 @@ else | |||
| 4871 | fi | 4870 | fi |
| 4872 | ], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys"]) | 4871 | ], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys"]) |
| 4873 | 4872 | ||
| 4874 | AC_CONFIG_COMMANDS([gdbinit], [ | 4873 | AC_CONFIG_COMMANDS([src/.gdbinit], [ |
| 4875 | if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then | 4874 | if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then |
| 4876 | echo creating src/.gdbinit | ||
| 4877 | echo "source $srcdir/src/.gdbinit" > src/.gdbinit | 4875 | echo "source $srcdir/src/.gdbinit" > src/.gdbinit |
| 4878 | fi | 4876 | fi |
| 4879 | ]) | 4877 | ]) |