stefano franchi wrote: > I patched the file and recompiled. But there is no such line in the > output, either in the console or in the error log
OK, then let's add some more debug code. Look what the attached reports (on the console). Jürgen
Index: src/LaTeX.cpp =================================================================== --- src/LaTeX.cpp (Revision 38534) +++ src/LaTeX.cpp (Arbeitskopie) @@ -283,6 +283,7 @@ // run bibtex // if (scanres & UNDEF_CIT || scanres & RERUN || run_bibtex) + LYXERR0("run_bibtex: " << run_bibtex); if (scanres & UNDEF_CIT || run_bibtex) { // Here we must scan the .aux file and look for // "\bibdata" and/or "\bibstyle". If one of those @@ -587,6 +588,7 @@ bool LaTeX::runBibTeX(vector<AuxInfo> const & bibtex_info, OutputParams const & runparams, bool biber) { + LYXERR0("runBibTeX -- biber: " << biber); bool result = false; for (vector<AuxInfo>::const_iterator it = bibtex_info.begin(); it != bibtex_info.end(); ++it) {