This is a fixup for commit
v1.12-227-g75e655e.
* syntax-checks.mk (sc_tabs_in_texi, sc_at_in_texi): Look into any .texi
file in doc/, rather than for just 'doc/automake.texi'.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
fi
sc_tabs_in_texi:
- @if grep ' ' $(srcdir)/doc/automake.texi; then \
+ @if grep ' ' $(srcdir)/doc/*.texi; then \
echo 'Do not use tabs in the manual.' 1>&2; \
exit 1; \
fi
sc_at_in_texi:
- @if grep -E '([^@]|^)@([ ][^@]|$$)' $(srcdir)/doc/automake.texi; \
+ @if grep -E '([^@]|^)@([ ][^@]|$$)' $(srcdir)/doc/*.texi; \
then \
echo 'Unescaped @.' 1>&2; \
exit 1; \