Merge pull request #5 from 11rcombs/osx-build-tweaks

Tweaked OSX build to not hate /usr/local quite as much
This commit is contained in:
Thomas Goyne 2013-12-08 06:53:16 -08:00
commit f56f9ade9b
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