Add /System/Library/Frameworks to the OSX framework search path

This commit is contained in:
Alessandro Decina 2017-07-22 00:08:53 +10:00 committed by Jussi Pakkanen
parent a9559e0d77
commit 328a1f30fd
1 changed files with 1 additions and 1 deletions

View File

@ -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: