Commit cccfd172 authored by Marius Rackwitz's avatar Marius Rackwitz

Ensure that the Aggregate Target doesn't link vendored dependencies

As either the user project or the frameworks are responsible for that aspect and this can cause issues with duplicate symbols.
parent 3e2dc6c8
......@@ -32,8 +32,14 @@ module Pod
private
# Ensure that vendored static frameworks and libraries are not linked
# twice to the aggregate target, which shares the xcconfig of the user
# target.
#
def custom_build_settings
settings = {
'OTHER_LDFLAGS' => '',
'OTHER_LIBTOOLFLAGS' => '',
'PODS_ROOT' => '$(SRCROOT)',
}
super.merge(settings)
......
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