aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-07-23 21:03:56 -0400
committerGlenn Morris2013-07-23 21:03:56 -0400
commit1813e115ce75df597c45d3c4b5a6520fec5239d3 (patch)
treedfb7bede0aa163801cb4548c27efc0818ab439c7
parent3d012865be24995904525eb1b12f51f4d95afcfc (diff)
downloademacs-1813e115ce75df597c45d3c4b5a6520fec5239d3.tar.gz
emacs-1813e115ce75df597c45d3c4b5a6520fec5239d3.zip
* configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac6
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ce3a922670a..9a1a82f6c3b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12013-07-24 Glenn Morris <rgm@gnu.org>
2
3 * configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS.
4
12013-07-23 Glenn Morris <rgm@gnu.org> 52013-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
4862dnl to run `make prefix=/some/where/else' and override the values set 4862dnl to run `make prefix=/some/where/else' and override the values set
4863dnl by configure. This also explains the `move-if-change' test and 4863dnl by configure. This also explains the `move-if-change' test and
4864dnl the use of force in the `epaths-force' rule in Makefile.in. 4864dnl the use of force in the `epaths-force' rule in Makefile.in.
4865AC_CONFIG_COMMANDS([epaths], [ 4865AC_CONFIG_COMMANDS([src/epaths.h], [
4866echo creating src/epaths.h
4867if test "${opsys}" = "mingw32"; then 4866if 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
4869else 4868else
@@ -4871,9 +4870,8 @@ else
4871fi 4870fi
4872], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys"]) 4871], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys"])
4873 4872
4874AC_CONFIG_COMMANDS([gdbinit], [ 4873AC_CONFIG_COMMANDS([src/.gdbinit], [
4875if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then 4874if 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
4878fi 4876fi
4879]) 4877])