GNOME Bugzilla – Bug 710998
latex_count=5 is not enough
Last modified: 2013-12-24 18:59:29 UTC
I have documentation that requires at least 6. I have patched the sources as follows: Index: src/latexgen.cpp =================================================================== --- src/latexgen.cpp (revision 850) +++ src/latexgen.cpp (working copy) @@ -126,7 +126,7 @@ } t << "\techo \"Rerunning latex....\"" << endl << "\t" << latex_command << " refman.tex" << endl - << "\tlatex_count=5 ; \\" << endl + << "\tlatex_count=8 ; \\" << endl << "\twhile egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\\" << endl << "\t do \\" << endl << "\t echo \"Rerunning latex....\" ;\\" << endl @@ -154,7 +154,7 @@ t << "\tpdflatex refman" << endl; } t << "\tpdflatex refman" << endl - << "\tlatex_count=5 ; \\" << endl + << "\tlatex_count=8 ; \\" << endl << "\twhile egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\\" << endl << "\t do \\" << endl << "\t echo \"Rerunning latex....\" ;\\" << endl
Thanks, I'll include the patch in the next GIT update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.6. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant (preferrably in the form of a self-contained example).