Workaroung für Bug #110

git-svn-id: https://svn.ibp.de/svn/capisuite/trunk/capisuite@398 4ebea2bb-67d4-0310-8558-a5799e421b66
This commit is contained in:
htgoebel 2005-01-07 17:38:24 +00:00
parent 4f85ff54d0
commit 73a70dedc0
1 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,10 @@ def _e_dist(target, source, env):
collected = collect_sources(source, {}, {})
collected = [ c.srcnode() for c in collected.keys() ]
for c in collected:
if not c.exists():
print 'warning: file', c, 'is missing'
collected = [c for c in collected if c.exists()]
collected.sort(cmp_path)
return (target, collected)