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

Changing host_requires_frameworks? to requires_frameworks? in xcconfig_helper

parent f2813b34
...@@ -25,6 +25,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -25,6 +25,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
* 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) [Kevin Coleman](https://github.com/kcoleman731)
[#4278](https://github.com/CocoaPods/CocoaPods/pull/4278)
##### Bug Fixes ##### Bug Fixes
......
...@@ -65,7 +65,7 @@ module Pod ...@@ -65,7 +65,7 @@ module Pod
# The xcconfig to edit. # The xcconfig to edit.
# #
def self.add_vendored_dependency_build_settings(target, xcconfig) 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| target.dependent_targets.each do |dependent_target|
XCConfigHelper.add_vendored_dependency_build_settings(dependent_target, xcconfig) XCConfigHelper.add_vendored_dependency_build_settings(dependent_target, xcconfig)
end 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