Fixed typo in Makefile.am (extra semicolon removed)
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 27 Dec 2009 14:52:38 +0000 (15:52 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 29 Dec 2009 18:45:05 +0000 (19:45 +0100)
* 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 <Ralf.Wildenhues@gmx.de>
ChangeLog
Makefile.am
Makefile.in

index 6edf59e..e00fd3d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-12-27  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       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  <julien@danjou.info>  (tiny change)
 
        Add support for newer python version
index b4d608a..3cd404a 100644 (file)
@@ -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
index 53ebd79..6fab18d 100644 (file)
@@ -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