Issue 982

This commit is contained in:
Thomas Nagy 2013-02-01 23:01:53 +01:00
parent 17aff345ea
commit bf27d10fd5
1 changed files with 5 additions and 1 deletions

View File

@ -163,7 +163,11 @@ class tex(Task.Task):
for k in exts_deps_tex:
Logs.debug('tex: trying %s%s' % (path, k))
found = node.parent.find_resource(path + k)
if found and not found in self.outputs:
for tsk in self.generator.tasks:
if not found or found in tsk.outputs:
break
else:
nodes.append(found)
add_name = False
for ext in exts_tex: