| Message ID | 20260219-latexmk-quiet-v1-1-acc137bc88b9@bootlin.com |
|---|---|
| State | New |
| Headers | show |
| Series | Makefile: pass -silent to latexmk | expand |
diff --git a/documentation/Makefile b/documentation/Makefile index e144a50b4..3910c41e6 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -71,7 +71,7 @@ epub: $(PNGs) # Unable to read an entire line---bufsize=200000. Please increase buf_size in texmf.cnf. latexpdf: $(PDFs) $(SOURCEDIR)/set_versions.py - buf_size=10000000 $(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + buf_size=10000000 LATEXMKOPTS="-silent" $(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) all: html epub latexpdf
This should drastically decrease the number of lines in the docs build logs, which currently can go up to 1700000 lines on the Autobuilder[1]. [1]: https://autobuilder.yoctoproject.org/valkyrie/#/builders/34/builds/400/steps/6/logs/stdio Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> --- documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- base-commit: 599e73c6d925562b7c4fea0429ba0281d14ad4d0 change-id: 20260219-latexmk-quiet-73aef996bf67