From bdae563c149e64c2c0893350920585d77419129d Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Tue, 19 Aug 2008 23:03:57 +0200 Subject: [PATCH] Fix maintainer-check failures. * doc/automake.texi (Conditionals): Drop TAB. * tests/missing6.test: Use 'rm -f'. Signed-off-by: Ralf Wildenhues --- ChangeLog | 6 ++++++ doc/automake.texi | 2 +- tests/missing6.test | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 48ee5a9fc..4b1191d54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-08-19 Ralf Wildenhues + + Fix maintainer-check failures. + * doc/automake.texi (Conditionals): Drop TAB. + * tests/missing6.test: Use 'rm -f'. + 2008-08-19 Reuben Thomas (tiny patch) * doc/automake.texi (Flag Variables Ordering, Per-Object Flags): diff --git a/doc/automake.texi b/doc/automake.texi index 021c0aecd..265a3f8ab 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -8977,7 +8977,7 @@ Here is an example of how to define a conditional config file: @example AM_CONDITIONAL([SHELL_WRAPPER], [test "x$with_wrapper" = xtrue]) AM_COND_IF([SHELL_WRAPPER], - [AC_CONFIG_FILES([wrapper:wrapper.in])]) + [AC_CONFIG_FILES([wrapper:wrapper.in])]) @end example @unnumberedsec Portability diff --git a/tests/missing6.test b/tests/missing6.test index 56c604723..f65e2ab97 100755 --- a/tests/missing6.test +++ b/tests/missing6.test @@ -26,7 +26,7 @@ set -e cat configure.in echo AC_OUTPUT } >configure.ac -rm configure.in +rm -f configure.in touch Makefile.am -- 2.11.4.GIT