diff options
| author | Matthias Melcher <github@matthiasm.com> | 2025-04-23 15:47:31 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2025-04-23 15:47:31 +0200 |
| commit | 9af8abc080e704d7f91a72dc3ac89bb42405bcf8 (patch) | |
| tree | 212ed0cb8c43813daee97410d764b924e4d84e86 | |
| parent | 1066b69c8e14cea5a71cac5330a8e60cb3cb3c49 (diff) | |
Fix forgotten `run_pdflatex` call (1.5)
| -rwxr-xr-x | documentation/make_pdf.in | 2 | ||||
| -rwxr-xr-x | fluid/documentation/make_pdf.in | 2 |
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 |
