From 6debf54e612b8da176f96c5b4efb043d19ef0276 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Sat, 25 Apr 2009 07:52:31 +0200 Subject: tests: fix check-AUTHORS skip logic * src/Makefile.am (check-AUTHORS): When this test is skipped, be sure to avoid all commands in the recipe, not just those passed to the first shell. --- src/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index 1997573f0..a8b91203c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -411,9 +411,9 @@ check-AUTHORS: $(all_programs) | perl -0 -pi -e 's/,\n/, /gm' \ | sed -n -e '/Written by /{ s//'"$$i"': /;' \ -e 's/,* and /, /; s/\.$$//; p; }'; \ - done > $(au_actual) - @sed -n '/^[^ ][^ ]*:/p' $(top_srcdir)/AUTHORS > $(au_dotdot) - @diff $(au_actual) $(au_dotdot) && rm -f $(au_actual) $(au_dotdot) + done > $(au_actual) && \ + sed -n '/^[^ ][^ ]*:/p' $(top_srcdir)/AUTHORS > $(au_dotdot) && \ + diff $(au_actual) $(au_dotdot) && rm -f $(au_actual) $(au_dotdot) # The following rule is not designed to be portable, # and relies on tools that not everyone has. -- cgit v1.2.3-54-g00ecf