From: Glenn Morris Date: Wed, 24 Jul 2013 01:03:56 +0000 (-0400) Subject: * configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1713 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1813e115ce75df597c45d3c4b5a6520fec5239d3;p=emacs.git * configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS. --- diff --git a/ChangeLog b/ChangeLog index ce3a922670a..9a1a82f6c3b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-07-24 Glenn Morris + + * configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS. + 2013-07-23 Glenn Morris * 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 dnl to run `make prefix=/some/where/else' and override the values set dnl by configure. This also explains the `move-if-change' test and dnl the use of force in the `epaths-force' rule in Makefile.in. -AC_CONFIG_COMMANDS([epaths], [ -echo creating src/epaths.h +AC_CONFIG_COMMANDS([src/epaths.h], [ if test "${opsys}" = "mingw32"; then ${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force-w32 else @@ -4871,9 +4870,8 @@ else fi ], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys"]) -AC_CONFIG_COMMANDS([gdbinit], [ +AC_CONFIG_COMMANDS([src/.gdbinit], [ if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then - echo creating src/.gdbinit echo "source $srcdir/src/.gdbinit" > src/.gdbinit fi ])