Add /System/Library/Frameworks to the OSX framework search path
This commit is contained in:
parent
a9559e0d77
commit
328a1f30fd
|
@ -551,7 +551,7 @@ class ExtraFrameworkDependency(ExternalDependency):
|
|||
def detect(self, name, path):
|
||||
lname = name.lower()
|
||||
if path is None:
|
||||
paths = ['/Library/Frameworks']
|
||||
paths = ['/System/Library/Frameworks', '/Library/Frameworks']
|
||||
else:
|
||||
paths = [path]
|
||||
for p in paths:
|
||||
|
|
Loading…
Reference in New Issue