summaryrefslogtreecommitdiff
path: root/maintainer
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-05-10 19:32:20 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2013-05-10 19:32:20 +0200
commit05703b1ad6ae8728d360d28e385cc6187dbe2102 (patch)
tree9d8753e0fcf65bce3a7126dfbc602e35602b4ad4 /maintainer
parent780299d96327ac43de44e38173c0162ed2c10474 (diff)
downloadautomake-05703b1ad6ae8728d360d28e385cc6187dbe2102.tar.gz
maintcheck: fix two references to old location of aclocal and automake
* maintainer/syntax-checks.mk (sc_perl_at_substs): Here: it should refer to 'bin/automake' and 'bin/aclocal', not 'automake' and 'alocal'. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'maintainer')
-rw-r--r--maintainer/syntax-checks.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/maintainer/syntax-checks.mk b/maintainer/syntax-checks.mk
index 61fcef3b9..76670eac1 100644
--- a/maintainer/syntax-checks.mk
+++ b/maintainer/syntax-checks.mk
@@ -508,11 +508,11 @@ sc_tests_PATH_SEPARATOR:
## Try to make sure all @...@ substitutions are covered by our
## substitution rule.
sc_perl_at_substs:
- @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' aclocal | wc -l` -ne 0; then \
+ @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' bin/aclocal | wc -l` -ne 0; then \
echo "Unresolved @...@ substitution in aclocal" 1>&2; \
exit 1; \
fi
- @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' automake | wc -l` -ne 0; then \
+ @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' bin/automake | wc -l` -ne 0; then \
echo "Unresolved @...@ substitution in automake" 1>&2; \
exit 1; \
fi