From d8baf19b3d4068b81dd2779eddc970b3f4f75b52 Mon Sep 17 00:00:00 2001 From: Themba Dube Date: Fri, 7 May 2021 11:29:16 -0400 Subject: [PATCH] chore(docs) run makeindex before xelatex --- docs/build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/build.py b/docs/build.py index a1db5c1a1..d69cc32e6 100755 --- a/docs/build.py +++ b/docs/build.py @@ -60,6 +60,7 @@ cmd("cd ../scripts && doxygen Doxyfile") cmd("sphinx-build -b latex . out_latex") # Generate PDF +cmd("cd out_latex && makeindex -s python.ist -o LVGL.ind LVGL.idx") cmd("cd out_latex && xelatex -interaction=batchmode *.tex") # Copy the result PDF to the main directory to make it avaiable for the HTML build cmd("cd out_latex && cp -f LVGL.pdf ../LVGL.pdf")