diff -Nurd automake-1.14.1.orig/doc/automake-history.info automake-1.14.1/doc/automake-history.info --- automake-1.14.1.orig/doc/automake-history.info 2013-12-23 14:11:35.000000000 -0500 +++ automake-1.14.1/doc/automake-history.info 2023-01-26 10:51:56.000000000 -0500 @@ -13,6 +13,11 @@ and with no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License." +INFO-DIR-SECTION Software development +START-INFO-DIR-ENTRY +* Automake-history: (automake-history). History of Automake development. +END-INFO-DIR-ENTRY +  File: automake-history.info, Node: Top, Next: Timeline, Up: (dir) From 09cbe67d3a5fea8774d529f41577e32b4b1ba81c Mon Sep 17 00:00:00 2001 Message-Id: <09cbe67d3a5fea8774d529f41577e32b4b1ba81c.1388073353.git.stefano.lattarini@gmail.com> From: Stefano Lattarini Date: Thu, 26 Dec 2013 16:52:06 +0100 Subject: [PATCH] tests: fix a spurious failure on Mac OS X This change fixes bug#14706. * lib/depcomp2.sh: Also cater to spurious diagnostic from GNU rm, not only from Apple's rm. Signed-off-by: Stefano Lattarini --- t/depcomp2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/depcomp2.sh b/t/depcomp2.sh index 3eba12d..3baaebf 100644 --- a/t/depcomp2.sh +++ b/t/depcomp2.sh @@ -47,7 +47,7 @@ $AUTOCONF cat stderr >&2 # Ignore warning messages sometimes seen on Mac OS X; they are # not automake's fault anyway, but either autoconf's or Mac's. -sed '/rm:.* conftest\.dSYM/d' stderr >stderr2 +sed '/rm:.*conftest\.dSYM/d' stderr >stderr2 test -s stderr2 && { cat stderr2; exit 1; } : -- 1.8.5.rc0.335.g7794a68 diff -Nurd automake-1.14.1.orig/t/fort4.sh automake-1.14.1/t/fort4.sh --- automake-1.14.1.orig/t/fort4.sh 2013-11-02 20:48:13.000000000 -0400 +++ automake-1.14.1/t/fort4.sh 2023-01-26 10:51:56.000000000 -0500 @@ -62,6 +62,8 @@ goodbye_SOURCES = bye.f90 sub/baz.f goodbye_FCFLAGS = LDADD = $(FCLIBS) +distclean-local: + -rm -rf *.dSYM END $ACLOCAL