]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
maintcheck: fix a couple of typos in error messages
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 31 Dec 2011 19:14:38 +0000 (20:14 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 31 Dec 2011 19:14:38 +0000 (20:14 +0100)
* Makefile.am (sc_tests_plain_autoheader): Fix the message to
report a bad use of "autocheader", not of "automake."
(sc_tests_plain_autom4te): Likewise, but for "autom4te" instead.
(sc_tests_plain_autoreconf): Likewise, but for "autoreconf"
instead.

Makefile.am

index b1f66e0d2e268179f88b6e535790d6a7d551b48e..77d76eb4fff7cbb581c748966e0573636c4e507e 100644 (file)
@@ -553,21 +553,21 @@ sc_tests_plain_automake:
 ## Tests should never call autoheader directly.
 sc_tests_plain_autoheader:
        @if grep -v '^#' $(xtests) | grep ':[   ]*autoheader\>'; then \
-         echo 'Do not run "automake" in the above tests.  Use "$$AUTOHEADER" instead.' 1>&2;  \
+         echo 'Do not run "autoheader" in the above tests.  Use "$$AUTOHEADER" instead.' 1>&2;  \
          exit 1; \
        fi
 
 ## Tests should never call autoreconf directly.
 sc_tests_plain_autoreconf:
        @if grep -v '^#' $(xtests) | grep ':[   ]*autoreconf\>'; then \
-         echo 'Do not run "automake" in the above tests.  Use "$$AUTORECONF" instead.' 1>&2;  \
+         echo 'Do not run "autoreconf" in the above tests.  Use "$$AUTORECONF" instead.' 1>&2;  \
          exit 1; \
        fi
 
 ## Tests should never call autom4te directly.
 sc_tests_plain_autom4te:
        @if grep -v '^#' $(xtests) | grep ':[   ]*autom4te\>'; then \
-         echo 'Do not run "automake" in the above tests.  Use "$$AUTOM4TE" instead.' 1>&2;  \
+         echo 'Do not run "autom4te" in the above tests.  Use "$$AUTOM4TE" instead.' 1>&2;  \
          exit 1; \
        fi