no blacklist

This commit is contained in:
Thomas Goyne 2012-08-05 07:39:01 -07:00
parent 24aa78db60
commit 6c8baded21
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ def collectlibs(lib, masterlist, targetdir):
l = lr.group(1)
if is_bad_lib(l) and not l in badlist:
badlist.append(l)
if not is_sys_lib(l) and not l in masterlist:
if (not is_sys_lib(l) or is_bad_lib(l)) and not l in masterlist:
locallist.append(l)
print "found %s:" % l