summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-04-23 15:47:31 +0200
committerMatthias Melcher <github@matthiasm.com>2025-04-23 15:47:31 +0200
commit9af8abc080e704d7f91a72dc3ac89bb42405bcf8 (patch)
tree212ed0cb8c43813daee97410d764b924e4d84e86
parent1066b69c8e14cea5a71cac5330a8e60cb3cb3c49 (diff)
Fix forgotten `run_pdflatex` call (1.5)
-rwxr-xr-xdocumentation/make_pdf.in2
-rwxr-xr-xfluid/documentation/make_pdf.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/documentation/make_pdf.in b/documentation/make_pdf.in
index c0e5fad8a..44dd69eda 100755
--- a/documentation/make_pdf.in
+++ b/documentation/make_pdf.in
@@ -40,7 +40,7 @@ run_pdflatex() {
&& [ $latex_count -gt 0 ]
do
echo "Rerunning pdflatex ..."
- pdflatex --interaction=nonstopmode refman.tex
+ run_pdflatex
latex_count=`expr $latex_count - 1`
done
cd ..) > pdfall.log 2>&1
diff --git a/fluid/documentation/make_pdf.in b/fluid/documentation/make_pdf.in
index 05322111d..ef275ea5e 100755
--- a/fluid/documentation/make_pdf.in
+++ b/fluid/documentation/make_pdf.in
@@ -40,7 +40,7 @@ run_pdflatex() {
&& [ $latex_count -gt 0 ]
do
echo "Rerunning pdflatex ..."
- pdflatex --interaction=nonstopmode refman.tex
+ run_pdflatex
latex_count=`expr $latex_count - 1`
done
cd ..) > pdfall.log 2>&1