mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* src/LaTeX.C
(handleFoundFile): do not add directories to dep table (crashes cygwin) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13529 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a7ec02ea03
commit
9063a63083
@ -688,7 +688,7 @@ void handleFoundFile(string const & ff, 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.
|
||||
if (fs::exists(foundfile))
|
||||
if (fs::exists(foundfile) && !fs::is_directory(foundfile))
|
||||
head.insert(foundfile, true);
|
||||
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user