From ee14239e0aa6e3eaa67cc509349828f85c6db765 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Sun, 27 Dec 2009 15:52:38 +0100 Subject: [PATCH] Fixed typo in Makefile.am (extra semicolon removed) * Makefile.am (sc_diff_automake_in_automake): Removed an extra semicolon in target's rules, which prevented a stdout redirection from working. Signed-off-by: Ralf Wildenhues --- ChangeLog | 7 +++++++ Makefile.am | 2 +- Makefile.in | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6edf59e..e00fd3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-12-27 Stefano Lattarini + + Fixed typo in Makefile.am (extra semicolon removed) + * Makefile.am (sc_diff_automake_in_automake): Removed an extra + semicolon in target's rules, which prevented a stdout redirection + from working. + 2009-12-21 Julien Danjou (tiny change) Add support for newer python version diff --git a/Makefile.am b/Makefile.am index b4d608a..3cd404a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -152,7 +152,7 @@ maintainer-check: $(syntax_check_rules) ## to 22 lines of diffs. sc_diff_automake_in_automake: @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 22; then \ - echo "found too many diffs between automake.in and automake"; 1>&2; \ + echo "found too many diffs between automake.in and automake" 1>&2; \ diff -c $(srcdir)/automake.in automake; \ exit 1; \ fi diff --git a/Makefile.in b/Makefile.in index 53ebd79..6fab18d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -857,7 +857,7 @@ maintainer-check: $(syntax_check_rules) sc_diff_automake_in_automake: @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 22; then \ - echo "found too many diffs between automake.in and automake"; 1>&2; \ + echo "found too many diffs between automake.in and automake" 1>&2; \ diff -c $(srcdir)/automake.in automake; \ exit 1; \ fi -- 2.7.4