Issue 1209

This commit is contained in:
Thomas Nagy 2012-10-09 22:35:58 +02:00
parent 43277c8e77
commit 6499810aec
1 changed files with 4 additions and 1 deletions

View File

@ -365,7 +365,10 @@ def apply_tex(self):
deps = self.to_list(self.deps)
for filename in deps:
n = self.path.find_resource(filename)
if not n in deps_lst: deps_lst.append(n)
if not n:
self.bld.fatal('Could not find %r for %r' % (filename, self))
if not n in deps_lst:
deps_lst.append(n)
for node in self.to_nodes(self.source):