From: Alexandre Duret-Lutz Date: Wed, 12 Feb 2003 15:01:57 +0000 (+0000) Subject: * Makefile.am (maintainer-check): Update the diff check X-Git-Tag: Release-1-7-2b~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a148b233483973c4985ea5ffd507a9263c24f4fb;p=thirdparty%2Fautomake.git * Makefile.am (maintainer-check): Update the diff check to account for the recent @SHELL@ substitution. --- diff --git a/ChangeLog b/ChangeLog index dfec02c15..f34ca720f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-02-12 Alexandre Duret-Lutz + + * Makefile.am (maintainer-check): Update the diff check + to account for the recent @SHELL@ substitution. + 2003-02-11 Alexandre Duret-Lutz * lib/depcomp: Do not put comments on the `icc)' line. diff --git a/Makefile.am b/Makefile.am index d33a53005..ec2e4edac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -95,9 +95,9 @@ INSTALL: lib/INSTALL # guaranteed to work on my machine. maintainer-check: automake aclocal ## This check avoids accidental configure substitutions in the source. -## There are exactly 7 lines that should be modified. This works out -## to 22 lines of diffs. - @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 24; then \ +## There are exactly 8 lines that should be modified. This works out +## to 28 lines of diffs. + @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 28; then \ echo "found too many diffs between automake.in and automake"; 1>&2; \ diff -c $(srcdir)/automake.in automake; \ exit 1; \ diff --git a/Makefile.in b/Makefile.in index 75eeb4bf2..c8a50d2a2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -699,7 +699,7 @@ INSTALL: lib/INSTALL # Some simple checks, and then ordinary check. These are only really # guaranteed to work on my machine. maintainer-check: automake aclocal - @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 24; then \ + @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 28; then \ echo "found too many diffs between automake.in and automake"; 1>&2; \ diff -c $(srcdir)/automake.in automake; \ exit 1; \