From: Stefano Lattarini Date: Sat, 31 Dec 2011 19:14:38 +0000 (+0100) Subject: maintcheck: fix a couple of typos in error messages X-Git-Tag: ng-0.5a~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dee15f4684717914cbfbbc2db5fe22e8f5e25e2;p=thirdparty%2Fautomake.git maintcheck: fix a couple of typos in error messages * 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. --- diff --git a/Makefile.am b/Makefile.am index b1f66e0d2..77d76eb4f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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