suppress verbose LaTeX output pdflatex CouchDB.tex writes about 700 lines of log output to stdout, which clutter the output of make when building CouchDB without adding a lot of value. The option interaction=batchmode reduces this to 3 lines. The full log of pdflatex is still available in build/latex/CouchDB.log.
Project: http://git-wip-us.apache.org/repos/asf/couchdb-documentation/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-documentation/commit/bbc4b719 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-documentation/tree/bbc4b719 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-documentation/diff/bbc4b719 Branch: refs/heads/master Commit: bbc4b7191763b0aced2aab51dec98a8a42e36729 Parents: 7854c12 Author: Bastian Krol <[email protected]> Authored: Tue Feb 2 17:31:53 2016 +0100 Committer: Bastian Krol <[email protected]> Committed: Wed Feb 3 11:06:56 2016 +0100 ---------------------------------------------------------------------- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-documentation/blob/bbc4b719/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile index 03ee668..9c071f5 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ latex: $(TEX) $(SPHINXBUILD) -b $@ $(SPHINXOPTS) $(BUILDDIR)/$@ pdf: latex $(PDFLATEX) - $(MAKE) -C $(BUILDDIR)/latex all-pdf + $(MAKE) LATEXOPTS=' -interaction=batchmode ' -C $(BUILDDIR)/latex all-pdf info: $(SPHINXBUILD) $(MAKEINFO) $(SPHINXBUILD) -b texinfo $(SPHINXOPTS) $(BUILDDIR)/texinfo
