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:
commit
f56f9ade9b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue