From 9796c90d54f31fbd7ab4245d8d6fc6659b805a28 Mon Sep 17 00:00:00 2001 From: Antonin Godard Date: Thu, 19 Feb 2026 14:02:33 +0100 Subject: [PATCH] Makefile: pass -silent to latexmk 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 (From yocto-docs rev: ac3766beaff14ea62552f811b2ffcc43f77d8dd5) Signed-off-by: Antonin Godard (cherry picked from commit 6e9362923d4ab5599730da2074ab9f5a36e8ba14) Signed-off-by: Antonin Godard Signed-off-by: Richard Purdie --- documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/Makefile b/documentation/Makefile index 07801cc2d3..3cc9f11ee0 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -68,7 +68,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