Add /Library/Frameworks/ to known system libraries

Fixes issue where the 3Dconnexion drivers weren't found in relocateable
mac application bundles.
This commit is contained in:
Ian Rees 2016-01-23 17:54:33 +13:00
parent 45d343e975
commit ada6ad5d89

View File

@ -4,7 +4,7 @@ from subprocess import Popen, PIPE, check_call, check_output
import pprint
import re
SYS_PATHS = ["/System/", "/usr/lib/"]
SYS_PATHS = ["/System/", "/usr/lib/", "/Library/Frameworks/"]
class LibraryNotFound(Exception):
pass