summaryrefslogtreecommitdiffstats
path: root/documentation/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/Makefile')
-rw-r--r--documentation/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
index 541390b2a1..30bb71cb31 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -61,9 +61,12 @@ epub: $(PNGs)
61 $(SOURCEDIR)/set_versions.py 61 $(SOURCEDIR)/set_versions.py
62 @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 62 @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
63 63
64# Note: we need to pass buf_size here (which is also configurable from
65# texmf.cnf), to avoid following error:
66# Unable to read an entire line---bufsize=200000. Please increase buf_size in texmf.cnf.
64latexpdf: $(PDFs) 67latexpdf: $(PDFs)
65 $(SOURCEDIR)/set_versions.py 68 $(SOURCEDIR)/set_versions.py
66 @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 69 buf_size=10000000 $(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
67 70
68all: html epub latexpdf 71all: html epub latexpdf
69 72