mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
tools/docs: sphinx-build-wrapper: pdflatex is needed only for pdf
Fix the logic which checks for pdflatex. Currently, it complains for both pdfdocs and latexdocs, but for the latter, all it is needed is Sphinx. Reported-by: Akira Yokosawa <akiyks@gmail.com> Closes: https://lore.kernel.org/linux-doc/cover.1758881658.git.mchehab+huawei@kernel.org/T/#ma81ff2e11b8579e5edc23e4381e464081ae668b7 Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Message-ID: <313df7b4aab653e8fc40c30120c0dbebf8a0bcb1.1759328070.git.mchehab+huawei@kernel.org>
This commit is contained in:
committed by
Jonathan Corbet
parent
ff1354edb3
commit
5401f971f5
@@ -650,7 +650,7 @@ class SphinxBuilder:
|
||||
if not sphinxbuild and target != "mandocs":
|
||||
sys.exit(f"Error: {self.sphinxbuild} not found in PATH.\n")
|
||||
|
||||
if builder == "latex":
|
||||
if target == "pdfdocs":
|
||||
if not self.pdflatex_cmd and not self.latexmk_cmd:
|
||||
sys.exit("Error: pdflatex or latexmk required for PDF generation")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user