tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / maintainer / syntax-checks.mk
1 # Maintainer checks for Automake.  Requires GNU make.
2
3 # Copyright (C) 2012-2013 Free Software Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 # We also have to take into account VPATH builds (where some generated
19 # tests might be in '$(builddir)' rather than in '$(srcdir)'), TAP-based
20 # tests script (which have a '.tap' extension) and helper scripts used
21 # by other test cases (which have a '.sh' extension).
22 xtests := $(shell \
23   if test $(srcdir) = .; then \
24      dirs=.; \
25    else \
26      dirs='$(srcdir) .'; \
27    fi; \
28    for d in $$dirs; do \
29      for s in tap sh; do \
30        ls $$d/t/ax/*.$$s $$d/t/*.$$s $$d/contrib/t/*.$$s 2>/dev/null; \
31      done; \
32    done | sort)
33
34 xdefs = \
35   $(srcdir)/t/ax/am-test-lib.sh \
36   $(srcdir)/t/ax/test-lib.sh \
37   $(srcdir)/t/ax/test-defs.in
38
39 ams := $(shell find $(srcdir) -name '*.dir' -prune -o -name '*.am' -print)
40
41 # Some simple checks, and then ordinary check.  These are only really
42 # guaranteed to work on my machine.
43 syntax_check_rules = \
44 $(sc_tests_plain_check_rules) \
45 sc_diff_automake \
46 sc_diff_aclocal \
47 sc_no_brace_variable_expansions \
48 sc_rm_minus_f \
49 sc_no_for_variable_in_macro \
50 sc_mkinstalldirs \
51 sc_pre_normal_post_install_uninstall \
52 sc_perl_no_undef \
53 sc_perl_no_split_regex_space \
54 sc_cd_in_backquotes \
55 sc_cd_relative_dir \
56 sc_perl_at_uscore_in_scalar_context \
57 sc_perl_local \
58 sc_AMDEP_TRUE_in_automake_in \
59 sc_make_without_am_makeflags \
60 sc_tests_no_source_defs \
61 sc_tests_obsolete_variables \
62 sc_tests_here_document_format \
63 sc_tests_command_subst \
64 sc_tests_no_run_make_redirect \
65 sc_tests_exit_not_Exit \
66 sc_tests_automake_fails \
67 sc_tests_overriding_macros_on_cmdline \
68 sc_tests_no_make_e \
69 sc_tests_plain_sleep \
70 sc_tests_ls_t \
71 sc_m4_am_plain_egrep_fgrep \
72 sc_tests_no_configure_in \
73 sc_tests_PATH_SEPARATOR \
74 sc_tests_logs_duplicate_prefixes \
75 sc_tests_makefile_variable_order \
76 sc_perl_at_substs \
77 sc_unquoted_DESTDIR \
78 sc_tabs_in_texi \
79 sc_at_in_texi
80
81 $(syntax_check_rules): bin/automake bin/aclocal
82 maintainer-check: $(syntax_check_rules)
83 .PHONY: maintainer-check $(syntax_check_rules)
84
85 # Check that the list of tests given in the Makefile is equal to the
86 # list of all test scripts in the Automake testsuite.
87 maintainer-check: maintainer-check-list-of-tests
88
89 # I'm a lazy typist.
90 lint: maintainer-check
91 .PHONY: lint
92
93 # The recipes of syntax checks require a modern GNU grep.
94 sc_sanity_gnu_grep:
95         $(AM_V_GEN)grep --version | grep 'GNU grep' >/dev/null 2>&1 \
96           && ab=$$(printf 'a\nb') \
97           && test "$$(printf 'xa\nb\nc' | grep -Pzo 'a\nb')" = "$$ab" \
98           || { \
99             echo "Syntax checks recipes require a modern GNU grep" >&2; \
100             exit 1; \
101           }
102 .PHONY: sc_sanity_gnu_grep
103 $(syntax_check_rules): sc_sanity_gnu_grep
104
105 # These check avoids accidental configure substitutions in the source.
106 # There are exactly 8 lines that should be modified from automake.in to
107 # automake, and 9 lines that should be modified from aclocal.in to
108 # aclocal.
109 automake_diff_no = 8
110 aclocal_diff_no = 9
111 sc_diff_automake sc_diff_aclocal: in=$($*_in)
112 sc_diff_automake sc_diff_aclocal: out=$($*_script)
113 sc_diff_automake sc_diff_aclocal: sc_diff_% :
114         @set +e; \
115         in=$*-in.tmp out=$*-out.tmp diffs=$*-diffs.tmp \
116           && sed '/^#!.*[pP]rototypes/d' $(in) > $$in \
117           && sed '/^# BEGIN.* PROTO/,/^# END.* PROTO/d' $(out) > $$out \
118           && { diff -u $$in $$out > $$diffs; test $$? -eq 1; } \
119           && added=`grep -v '^+++ ' $$diffs | grep -c '^+'` \
120           && removed=`grep -v '^--- ' $$diffs | grep -c '^-'` \
121           && test $$added,$$removed = $($*_diff_no),$($*_diff_no) \
122           || { \
123             echo "Found unexpected diffs between $(in) and $(out)"; \
124             echo "Lines added:   $$added"  ; \
125             echo "Lines removed: $$removed"; \
126             cat $$diffs; \
127             exit 1; \
128           } >&2; \
129         rm -f $$in $$out $$diffs
130
131 # Expect no instances of '${...}'.  However, $${...} is ok, since that
132 # is a shell construct, not a Makefile construct.
133 sc_no_brace_variable_expansions:
134         @if grep -v '^ *#' $(ams) | grep -F '$${' | grep -F -v '$$$$'; then \
135           echo "Found too many uses of '\$${' in the lines above." 1>&2; \
136           exit 1; \
137         else :; fi
138
139 # Make sure 'rm' is called with '-f'.
140 sc_rm_minus_f:
141         @if grep -v '^#' $(ams) $(xtests) \
142            | grep -vE '/(rm-f-probe\.sh|spy-rm\.tap|subobj-clean.*-pr10697\.sh):' \
143            | grep -E '\<rm ([^-]|\-[^f ]*\>)'; \
144         then \
145           echo "Suspicious 'rm' invocation." 1>&2; \
146           exit 1; \
147         else :; fi
148
149 # Never use something like "for file in $(FILES)", this doesn't work
150 # if FILES is empty or if it contains shell meta characters (e.g. $ is
151 # commonly used in Java filenames).
152 sc_no_for_variable_in_macro:
153         @if grep 'for .* in \$$(' $(ams) | grep -v '/Makefile\.am:'; then \
154           echo 'Use "list=$$(mumble); for var in $$$$list".' 1>&2 ; \
155           exit 1; \
156         else :; fi
157
158 # Make sure all invocations of mkinstalldirs are correct.
159 sc_mkinstalldirs:
160         @if grep -n 'mkinstalldirs' $(ams) \
161               | grep -F -v '$$(mkinstalldirs)' \
162               | grep -v '^\./Makefile.am:[0-9][0-9]*:  *lib/mkinstalldirs \\$$'; \
163         then \
164           echo "Found incorrect use of mkinstalldirs in the lines above" 1>&2; \
165           exit 1; \
166         else :; fi
167
168 # Make sure all calls to PRE/NORMAL/POST_INSTALL/UNINSTALL
169 sc_pre_normal_post_install_uninstall:
170         @if grep -E -n '\((PRE|NORMAL|POST)_(|UN)INSTALL\)' $(ams) | \
171               grep -v ':##' | grep -v ':        @\$$('; then \
172           echo "Found incorrect use of PRE/NORMAL/POST_INSTALL/UNINSTALL in the lines above" 1>&2; \
173           exit 1; \
174         else :; fi
175
176 # We never want to use "undef", only "delete", but for $/.
177 sc_perl_no_undef:
178         @if grep -n -w 'undef ' $(automake_in) | \
179               grep -F -v 'undef $$/'; then \
180           echo "Found 'undef' in the lines above; use 'delete' instead" 1>&2; \
181           exit 1; \
182         fi
183
184 # We never want split (/ /,...), only split (' ', ...).
185 sc_perl_no_split_regex_space:
186         @if grep -n 'split (/ /' $(automake_in) $(acloca_in); then \
187           echo "Found bad split in the lines above." 1>&2; \
188           exit 1; \
189         fi
190
191 # Look for cd within backquotes
192 sc_cd_in_backquotes:
193         @if grep -n '^[^#]*` *cd ' $(automake_in) $(ams); then \
194           echo "Consider using \$$(am__cd) in the lines above." 1>&2; \
195           exit 1; \
196         fi
197
198 # Look for cd to a relative directory (may be influenced by CDPATH).
199 # Skip some known directories that are OK.
200 sc_cd_relative_dir:
201         @if grep -n '^[^#]*cd ' $(automake_in) $(ams) | \
202               grep -v 'echo.*cd ' | \
203               grep -v 'am__cd =' | \
204               grep -v '^[^#]*cd [./]' | \
205               grep -v '^[^#]*cd \$$(top_builddir)' | \
206               grep -v '^[^#]*cd "\$$\$$am__cwd' | \
207               grep -v '^[^#]*cd \$$(abs' | \
208               grep -v '^[^#]*cd "\$$(DESTDIR)'; then \
209           echo "Consider using \$$(am__cd) in the lines above." 1>&2; \
210           exit 1; \
211         fi
212
213 # Using @_ in a scalar context is most probably a programming error.
214 sc_perl_at_uscore_in_scalar_context:
215         @if grep -Hn '[^%@_A-Za-z0-9][_A-Za-z0-9]*[^) ] *= *@_' \
216             $(automake_in) $(aclocal_in); then \
217           echo "Using @_ in a scalar context in the lines above." 1>&2; \
218           exit 1; \
219         fi
220
221 ## Allow only few variables to be localized in automake and aclocal.
222 sc_perl_local:
223         @if egrep -v '^[ \t]*local \$$[_~]( *=|;)' \
224               $(automake_in) $(aclocal_in) | \
225             grep '^[ \t]*local [^*]'; then \
226           echo "Please avoid 'local'." 1>&2; \
227           exit 1; \
228         fi
229
230 # Don't let AMDEP_TRUE substitution appear in automake.in.
231 sc_AMDEP_TRUE_in_automake_in:
232         @if grep '@AMDEP''_TRUE@' $(automake_in); then \
233           echo "Don't put AMDEP_TRUE substitution in automake.in" 1>&2; \
234           exit 1; \
235         fi
236
237 # Recursive make invocations should always pass $(AM_MAKEFLAGS)
238 # to $(MAKE), for portability to non-GNU make.
239 sc_tests_make_without_am_makeflags:
240         @if grep '^[^#].*(MAKE) ' $(ams) $(automake_in) \
241             | grep -Fv '$$(AM_MAKEFLAGS)'; \
242         then \
243           echo 'Use $$(MAKE) $$(AM_MAKEFLAGS).' 1>&2; \
244           exit 1; \
245         fi
246
247 # Look out for some obsolete variables.
248 sc_tests_obsolete_variables:
249         @vars=" \
250           using_tap \
251           am_using_tap \
252           test_prefer_config_shell \
253           original_AUTOMAKE \
254           original_ACLOCAL \
255           parallel_tests \
256           am_parallel_tests \
257         "; \
258         seen=""; \
259         for v in $$vars; do \
260           if grep -E "\b$$v\b" $(xtests) $(xdefs); then \
261             seen="$$seen $$v"; \
262           fi; \
263         done; \
264         if test -n "$$seen"; then \
265           for v in $$seen; do \
266             case $$v in \
267               parallel_tests|am_parallel_tests) v2=am_serial_tests;; \
268               *) v2=am_$$v;; \
269             esac; \
270             echo "Variable '$$v' is obsolete, use '$$v2' instead." 1>&2; \
271           done; \
272           exit 1; \
273         else :; fi
274
275 # Tests should never call some programs directly, but only through the
276 # corresponding variable (e.g., '$MAKE', not 'make').  This will allow
277 # the programs to be overridden at configure time (for less brittleness)
278 # or by the user at make time (to allow better testsuite coverage).
279 sc_tests_plain_check_rules = \
280   sc_tests_plain_egrep \
281   sc_tests_plain_fgrep \
282   sc_tests_plain_make \
283   sc_tests_plain_perl \
284   sc_tests_plain_automake \
285   sc_tests_plain_aclocal \
286   sc_tests_plain_autoconf \
287   sc_tests_plain_autoupdate \
288   sc_tests_plain_autom4te \
289   sc_tests_plain_autoheader \
290   sc_tests_plain_autoreconf
291
292 toupper = $(shell echo $(1) | LC_ALL=C tr '[a-z]' '[A-Z]')
293
294 $(sc_tests_plain_check_rules): sc_tests_plain_% :
295         @# The leading ':' in the grep below is what is printed by the
296         @# preceding 'grep -v' after the file name.
297         @# It works here as a poor man's substitute for beginning-of-line
298         @# marker.
299         @if grep -v '^[         ]*#' $(xtests) \
300            | $(EGREP) '(:|\bif|\bnot|[;!{\|\(]|&&|\|\|)[        ]*?$*\b'; \
301          then \
302            echo 'Do not run "$*" in the above tests.' \
303                 'Use "$$$(call toupper,$*)" instead.' 1>&2; \
304            exit 1; \
305         fi
306
307 # Tests should only use END and EOF for here documents
308 # (so that the next test is effective).
309 sc_tests_here_document_format:
310         @if grep '<<' $(xtests) | grep -Ev '\b(END|EOF)\b|\bcout <<'; then \
311           echo 'Use here documents with "END" and "EOF" only, for greppability.' 1>&2; \
312           exit 1; \
313         fi
314
315 # Our test case should use the $(...) POSIX form for command substitution,
316 # rather than the older `...` form.
317 # The point of ignoring text on here-documents is that we want to exempt
318 # Makefile.am rules, configure.ac code and helper shell script created and
319 # used by out shell scripts, because Autoconf (as of version 2.69) does not
320 # yet ensure that $CONFIG_SHELL will be set to a proper POSIX shell.
321 sc_tests_command_subst:
322         @found=false; \
323         scan () { \
324           sed -n -e '/^#/d' \
325                  -e '/<<.*END/,/^END/b' -e '/<<.*EOF/,/^EOF/b' \
326                  -e 's/\\`/\\{backtick}/' \
327                  -e "s/[^\\]'\([^']*\`[^']*\)*'/'{quoted-text}'/g" \
328                  -e '/`/p' $$*; \
329         }; \
330         for file in $(xtests); do \
331           res=`scan $$file`; \
332           if test -n "$$res"; then \
333             echo "$$file:$$res"; \
334             found=true; \
335           fi; \
336         done; \
337         if $$found; then \
338           echo 'Use $$(...), not `...`, for command substitutions.' >&2; \
339           exit 1; \
340         fi
341
342 # Tests should no longer call 'Exit', just 'exit'.  That's because we
343 # now have in place a better workaround to ensure the exit status is
344 # transported correctly across the exit trap.
345 sc_tests_exit_not_Exit:
346         @if grep 'Exit' $(xtests) $(xdefs) | grep -Ev '^[^:]+: *#' | grep .; then \
347           echo "Use 'exit', not 'Exit'; it's obsolete now." 1>&2; \
348           exit 1; \
349         fi
350
351 # Guard against obsolescent uses of ./defs in tests.  Now,
352 # 'test-init.sh' should be used instead.
353 sc_tests_no_source_defs:
354         @if grep -E '\. .*defs($$| )' $(xtests); then \
355           echo "Source 'test-init.sh', not './defs'." 1>&2; \
356           exit 1; \
357         fi
358
359 # Invocation of 'run_make' should not have output redirections.
360 sc_tests_no_run_make_redirect:
361         @if grep -Pzo '.*(\$$MAKE|\brun_make)\b(.*(\\\n))*.*>.*' $(xtests); \
362         then \
363           echo 'Do not redirect stdout/stderr in "run_make" or "$$MAKE"' \
364                'invocations,' >&2; \
365           echo 'use "run_make {-E|-O|-M}" instead.' >&2; \
366           exit 1; \
367         fi
368
369 # Use AUTOMAKE_fails when appropriate
370 sc_tests_automake_fails:
371         @if grep -v '^#' $(xtests) | grep '\$$AUTOMAKE.*&&.*exit'; then \
372           echo 'Use AUTOMAKE_fails + grep to catch automake failures in the above tests.' 1>&2;  \
373           exit 1; \
374         fi
375
376 # "make -e" is brittle and unsafe, since it let *all* the environment
377 # win over the macro definitions in the Makefiles.  Since we offer
378 # AM_MAKEFLAGS to allow the user to portably override macro definitions
379 # from the command line in a safe way, we should encourage users to use
380 # it.
381 sc_tests_no_make_e:
382         @if grep -E '\$$MAKE\b.* -[a-zA-Z0-9]*e' $(xtests); then \
383           echo '"make -e" is brittle, use "run_make" instead.' 1>&2; \
384           exit 1; \
385         fi
386
387 # Overriding a Makefile macro on the command line is not portable when
388 # recursive targets are used.  Better use an envvar.  SHELL is an
389 # exception, POSIX says it can't come from the environment.  V, DESTDIR,
390 # DISTCHECK_CONFIGURE_FLAGS and DISABLE_HARD_ERRORS are exceptions, too,
391 # as package authors are urged not to initialize them anywhere.
392 # Finally, 'exp' is used by some ad-hoc checks, where we ensure it's
393 # ok to override it from the command line.
394 sc_tests_overriding_macros_on_cmdline:
395 # The first s/// tries to account for usages like "$MAKE || st=$?".
396 # 'DISTCHECK_CONFIGURE_FLAGS' and 'exp' are allowed to contain whitespace in
397 # their definitions, hence the more complex last three substitutions below.
398         @if sed -e 's/ || .*//' -e 's/ && .*//' \
399                 -e 's/ DESTDIR=[^ ]*/ /' -e 's/ SHELL=[^ ]*/ /' \
400                 -e 's/ V=[^ ]*/ /' -e 's/ DISABLE_HARD_ERRORS=[^ ]*/ /' \
401                 -e "s/ DISTCHECK_CONFIGURE_FLAGS='[^']*'/ /" \
402                 -e 's/ DISTCHECK_CONFIGURE_FLAGS="[^"]*"/ /' \
403                 -e 's/ DISTCHECK_CONFIGURE_FLAGS=[^ ]/ /' \
404                 -e "s/ exp='[^']*'/ /" \
405                 -e 's/ exp="[^"]*"/ /' \
406                 -e 's/ exp=[^ ]/ /' \
407               $(filter-out %/am-test-lib.sh,$(xtests)) \
408                 | grep '\$$MAKE .*='; then \
409           echo 'Rewrite "$$MAKE foo=bar" as "run_make foo=bar" in the lines above,'; \
410           echo 'it is more portable.'; \
411           exit 1; \
412         fi >&2
413         @if grep 'SHELL=.*\$$MAKE' $(xtests); then \
414           echo '$$MAKE ignores the SHELL envvar, use "run_make SHELL=$$SHELL"'; \
415           echo 'in the above lines.'; \
416           exit 1; \
417         fi >&2
418
419 # Prefer use of our 'is_newest' auxiliary script over the more hacky
420 # idiom "test $(ls -1t new old | sed 1q) = new", which is both more
421 # cumbersome and more fragile.
422 sc_tests_ls_t:
423         @if LC_ALL=C grep -E '\bls(\s+-[a-zA-Z0-9]+)*\s+-[a-zA-Z0-9]*t' \
424             $(xtests); then \
425           echo "Use 'is_newest' rather than hacks based on 'ls -t'" 1>&2; \
426           exit 1; \
427         fi
428
429 # Never use 'sleep 1' to create files with different timestamps.
430 # Use '$sleep' instead.  Some file systems (e.g., Windows) have only
431 # a 2sec resolution.
432 sc_tests_plain_sleep:
433         @if grep -E '\bsleep +[12345]\b' $(xtests); then \
434           echo 'Do not use "sleep x" in the above tests.  Use "$$sleep" instead.' 1>&2; \
435           exit 1; \
436         fi
437
438 # fgrep and egrep are not required by POSIX.
439 sc_m4_am_plain_egrep_fgrep:
440         @if grep -E '\b[ef]grep\b' $(ams) $(srcdir)/m4/*.m4; then \
441           echo 'Do not use egrep or fgrep in the above files,' \
442                'they are not portable.' 1>&2; \
443           exit 1; \
444         fi
445
446 # Prefer 'configure.ac' over the obsolescent 'configure.in' as the name
447 # for configure input files in our testsuite.  The latter  has been
448 # deprecated for several years (at least since autoconf 2.50).
449 sc_tests_no_configure_in:
450         @if grep -E '\bconfigure\\*\.in\b' $(xtests) $(xdefs) \
451               | grep -Ev '/backcompat.*\.(sh|tap):' \
452               | grep -Ev '/autodist-configure-no-subdir\.sh:' \
453               | grep -Ev '/(configure|help)\.sh:' \
454               | grep .; \
455         then \
456           echo "Use 'configure.ac', not 'configure.in', as the name" >&2; \
457           echo "for configure input files in the test cases above." >&2; \
458           exit 1; \
459         fi
460
461 # Rule to ensure that the testsuite has been run before.  We don't depend
462 # on 'check' here, because that would be very wasteful in the common case.
463 # We could run "make check RECHECK_LOGS=" and avoid toplevel races with
464 # AM_RECURSIVE_TARGETS.  Suggest keeping test directories around for
465 # greppability of the Makefile.in files.
466 sc_ensure_testsuite_has_run:
467         @if test ! -f '$(TEST_SUITE_LOG)'; then \
468           echo 'Run "env keep_testdirs=yes make check" before' \
469                'running "make maintainer-check"' >&2; \
470           exit 1; \
471         fi
472 .PHONY: sc_ensure_testsuite_has_run
473
474 # Ensure our warning and error messages do not contain duplicate 'warning:' prefixes.
475 # This test actually depends on the testsuite having been run before.
476 sc_tests_logs_duplicate_prefixes: sc_ensure_testsuite_has_run
477         @if grep -E '(warning|error):.*(warning|error):' t/*.log; then \
478           echo 'Duplicate warning/error message prefixes seen in above tests.' >&2; \
479           exit 1; \
480         fi
481
482 # Ensure variables are listed before rules in Makefile.in files we generate.
483 sc_tests_makefile_variable_order: sc_ensure_testsuite_has_run
484         @st=0; \
485         for file in `find t -name Makefile.in -print`; do \
486           latevars=`sed -n \
487             -e :x -e 's/#.*//' \
488             -e '/\\\\$$/{' -e N -e 'b x' -e '}' \
489             -e '# Literal TAB.' \
490             -e '1,/^    /d' \
491             -e '# Allow @ so we match conditionals.' \
492             -e '/^ *[a-zA-Z_@]\{1,\} *=/p' $$file`; \
493           if test -n "$$latevars"; then \
494             echo "Variables are expanded too late in $$file:" >&2; \
495             echo "$$latevars" | sed 's/^/  /' >&2; \
496             st=1; \
497           fi; \
498         done; \
499         test $$st -eq 0 || { \
500           echo 'Ensure variables are expanded before rules' >&2; \
501           exit 1; \
502         }
503
504 # Using ':' as a PATH separator is not portable.
505 sc_tests_PATH_SEPARATOR:
506         @if grep -E '\bPATH=.*:.*' $(xtests) ; then \
507           echo "Use '\$$PATH_SEPARATOR', not ':', in PATH definitions" \
508                "above." 1>&2; \
509           exit 1; \
510         fi
511
512 # Try to make sure all @...@ substitutions are covered by our
513 # substitution rule.
514 sc_perl_at_substs:
515         @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' bin/aclocal | wc -l` -ne 0; then \
516           echo "Unresolved @...@ substitution in aclocal" 1>&2; \
517           exit 1; \
518         fi
519         @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' bin/automake | wc -l` -ne 0; then \
520           echo "Unresolved @...@ substitution in automake" 1>&2; \
521           exit 1; \
522         fi
523
524 sc_unquoted_DESTDIR:
525         @if grep -E "[^\'\"]\\\$$\(DESTDIR" $(ams); then \
526           echo 'Suspicious unquoted DESTDIR uses.' 1>&2 ; \
527           exit 1; \
528         fi
529
530 sc_tabs_in_texi:
531         @if grep '      ' $(srcdir)/doc/automake.texi; then \
532           echo 'Do not use tabs in the manual.' 1>&2; \
533           exit 1; \
534         fi
535
536 sc_at_in_texi:
537         @if grep -E '([^@]|^)@([         ][^@]|$$)' $(srcdir)/doc/automake.texi; \
538         then \
539           echo 'Unescaped @.' 1>&2; \
540           exit 1; \
541         fi