Commit 7383eb4f authored by Kevin Coleman's avatar Kevin Coleman

Changing host_requires_frameworks? to requires_frameworks? in xcconfig_helper

parent f2813b34
......@@ -23,8 +23,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Samuel Giddins](https://github.com/segiddins)
[#4124](https://github.com/CocoaPods/CocoaPods/issues/4124)
* Support for adding dependency target vendored libraries and frameworks to build settings.
* Support for adding dependency target vendored libraries and frameworks to build settings.
[Kevin Coleman](https://github.com/kcoleman731)
[#4278](https://github.com/CocoaPods/CocoaPods/pull/4278)
##### Bug Fixes
......
......@@ -65,7 +65,7 @@ module Pod
# The xcconfig to edit.
#
def self.add_vendored_dependency_build_settings(target, xcconfig)
if target.host_requires_frameworks?
if target.requires_frameworks?
target.dependent_targets.each do |dependent_target|
XCConfigHelper.add_vendored_dependency_build_settings(dependent_target, xcconfig)
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment