From 8e249b249e8c61d0d06ee035cc6230211861cdd8 Mon Sep 17 00:00:00 2001 From: 11rcombs Date: Sat, 7 Dec 2013 21:58:03 -0600 Subject: [PATCH] Tweaked OSX build to not hate /usr/local quite as much --- aegisub/tools/osx-fix-libs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/tools/osx-fix-libs.py b/aegisub/tools/osx-fix-libs.py index f0e276f75..6e14c9064 100755 --- a/aegisub/tools/osx-fix-libs.py +++ b/aegisub/tools/osx-fix-libs.py @@ -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