aboutsummaryrefslogtreecommitdiff
path: root/lint
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-03-14 19:30:27 +0000
committerng0 <ng0@n0.is>2019-03-14 19:30:27 +0000
commita067ce16d5239fe27f3596372f8ae04fc450b677 (patch)
tree86ee32679a8d5f95ad688ae92ab73f6f4226011f /lint
parentd92e753beade02c46fe1c8f30184096a72d2afce (diff)
downloadgnunet-a067ce16d5239fe27f3596372f8ae04fc450b677.tar.gz
gnunet-a067ce16d5239fe27f3596372f8ae04fc450b677.zip
remove the single tab in texinfo we had
Diffstat (limited to 'lint')
-rw-r--r--lint/Makefile.am4
1 files changed, 4 insertions, 0 deletions
diff --git a/lint/Makefile.am b/lint/Makefile.am
index 6f2f22abc..59d4b6073 100644
--- a/lint/Makefile.am
+++ b/lint/Makefile.am
@@ -19,6 +19,10 @@ check-man:
19# exception to add: uref's can go above 79 chars. 19# exception to add: uref's can go above 79 chars.
20check-texinfo: 20check-texinfo:
21 printf "Running basic texinfo linters\n" 21 printf "Running basic texinfo linters\n"
22 printf "...lines containing tabstops?\n" 2>&1 | tee $(top_srcdir)/doc/handbook/texinfo_handbook.log || true
23 printf "...lines containing tabstops?\n" 2>&1 | tee $(top_srcdir)/doc/tutorial/texinfo_tutorial.log || true
24 @cd $(top_srcdir)/doc/handbook ; find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 awk '/\t/ {print FILENAME":"NR":"$$0}' > $(srcdir)/texinfo_handbook.log || true
25 @cd $(top_srcdir)/doc/tutorial ; find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 awk '/\t/ {print FILENAME":"NR":"$$0}' > $(srcdir)/texinfo_tutorial.log || true
22 printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/handbook/texinfo_handbook.log || true 26 printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/handbook/texinfo_handbook.log || true
23 @cd $(top_srcdir)/doc/handbook ; find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 awk 'length>79 {print FILENAME":"NR":"$$0}' > $(srcdir)/texinfo_handbook.log || true 27 @cd $(top_srcdir)/doc/handbook ; find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 awk 'length>79 {print FILENAME":"NR":"$$0}' > $(srcdir)/texinfo_handbook.log || true
24 printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/tutorial/texinfo_tutorial.log || true 28 printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/tutorial/texinfo_tutorial.log || true