in cf-private, use correct path to CoreFoundation

This commit is contained in:
Jude Taylor 2015-11-21 15:55:19 -08:00
parent f5609a4d2a
commit 4cd86cb068

View file

@ -6,7 +6,7 @@ linkWithRealCF() {
# gross! many symbols (such as _OBJC_CLASS_$_NSArray) are defined in system CF, but not # gross! many symbols (such as _OBJC_CLASS_$_NSArray) are defined in system CF, but not
# in the opensource release # in the opensource release
# if the package needs private headers, we assume they also want to link with system CF # if the package needs private headers, we assume they also want to link with system CF
NIX_LDFLAGS+=" /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation" NIX_LDFLAGS+=" /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"
} }
preConfigureHooks+=(prependSearchPath linkWithRealCF) preConfigureHooks+=(prependSearchPath linkWithRealCF)