Skip to content

Commit 8255901

Browse files
committed
Fix Makefile: add --keep-going option to ensure continued processing during PDF build
1 parent 6730d89 commit 8255901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ dist-pdf: venv-pdf
261261
# as otherwise the full latexmk process is run twice.
262262
# ($$ is needed to escape the $; https://www.gnu.org/software/make/manual/make.html#Basics-of-Variable-References)
263263
-sed -i 's/: all-$$(FMT)/:/' build/latex/Makefile
264-
(cd build/latex; $(MAKE) clean && $(MAKE) --jobs=$$((`nproc`+1)) --output-sync LATEXMKOPTS='-quiet' all-pdf; $(MAKE) FMT=pdf zip bz2)
264+
(cd build/latex; $(MAKE) clean && $(MAKE) --jobs=$$((`nproc`+1)) --output-sync --keep-going LATEXMKOPTS='-quiet' all-pdf; $(MAKE) FMT=pdf zip bz2)
265265
cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
266266
cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
267267
@echo "Build finished and archived!"

0 commit comments

Comments
 (0)