Fix depfile bug

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_1_6@1912 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2001-04-12 08:08:29 +00:00
parent 3efcce37c5
commit de28287fc0

View File

@ -665,7 +665,8 @@ void LaTeX::deplog(DepTable & head)
// On initial insert we want to do the update at once
// since this file can not be a file generated by
// the latex run.
head.insert(foundfile, true);
if (FileInfo(foundfile).exist())
head.insert(foundfile, true);
continue;
}