From: Ralf Wildenhues Date: Mon, 9 Oct 2006 19:54:19 +0000 (+0000) Subject: For PR automake/505: X-Git-Tag: Release-1-10~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3acc6ed41cda0b1f2da34edcdda689700a7350d1;p=thirdparty%2Fautomake.git For PR automake/505: * lib/am/configure.am (am__CONFIG_DISTCLEAN_FILES): Fix typo: `config.status.lineno', not `configure.status.lineno'. --- diff --git a/ChangeLog b/ChangeLog index b67b13b67..4e7f2de63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-09-09 andi5.py@gmx.net (tiny change) + + For PR automake/505: + * lib/am/configure.am (am__CONFIG_DISTCLEAN_FILES): + Fix typo: `config.status.lineno', not `configure.status.lineno'. + 2006-09-05 Ralf Wildenhues * NEWS: Mention that `install-sh' needs executable permissions. diff --git a/Makefile.in b/Makefile.in index 1fe897100..d04a14acd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -47,7 +47,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/amversion.m4 \ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno configure.status.lineno + configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/lib/mkinstalldirs CONFIG_CLEAN_FILES = am__installdirs = "$(DESTDIR)$(bindir)" diff --git a/lib/Automake/tests/Makefile.in b/lib/Automake/tests/Makefile.in index 7c50263aa..0fbc11c02 100644 --- a/lib/Automake/tests/Makefile.in +++ b/lib/Automake/tests/Makefile.in @@ -182,7 +182,7 @@ CTAGS: check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ - list='$(TESTS)'; \ + list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ diff --git a/lib/am/configure.am b/lib/am/configure.am index e7cea028d..6c55d39dd 100644 --- a/lib/am/configure.am +++ b/lib/am/configure.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +## Copyright (C) 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -131,7 +131,7 @@ endif %?REGEN-ACLOCAL-M4% if %?TOPDIR_P% am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno configure.status.lineno + configure.lineno config.status.lineno distclean: -rm -f $(am__CONFIG_DISTCLEAN_FILES) diff --git a/tests/Makefile.in b/tests/Makefile.in index 310c50542..a3d55279c 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -787,7 +787,7 @@ CTAGS: check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ - list='$(TESTS)'; \ + list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \