From: Stefano Lattarini Date: Sun, 27 Dec 2009 14:52:38 +0000 (+0100) Subject: Fixed typo in Makefile.am (extra semicolon removed) X-Git-Tag: v1.11.1b~100^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee14239e0aa6e3eaa67cc509349828f85c6db765;p=thirdparty%2Fautomake.git 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 --- diff --git a/ChangeLog b/ChangeLog index 6edf59e00..e00fd3da3 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 b4d608a4b..3cd404a0c 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 53ebd79bf..6fab18da6 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