Tweaked OSX build to not hate /usr/local quite as much

This commit is contained in:
11rcombs 2013-12-07 21:58:03 -06:00
parent 11d1348c2c
commit 8e249b249e
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