Commit df183caa authored by Samuel E. Giddins's avatar Samuel E. Giddins

Merge pull request #3009 from jrosssavant/fix-swift-frameworks-codesign

Fix for issue #3008 Swift Pod causes runtime failure in Obj-C host app o...
parents 72816c03 aa366b28
...@@ -78,6 +78,9 @@ module Pod ...@@ -78,6 +78,9 @@ module Pod
for lib in $swift_runtime_libs; do for lib in $swift_runtime_libs; do
echo "rsync -av \\"${SWIFT_STDLIB_PATH}/${lib}\\" \\"${destination}\\"" echo "rsync -av \\"${SWIFT_STDLIB_PATH}/${lib}\\" \\"${destination}\\""
rsync -av "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" rsync -av "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then
code_sign "${destination}/${lib}"
fi
done done
} }
......
Subproject commit 84c17800c7db7b4818ed089fd75cdc58f3c5c8b9 Subproject commit 7fd160e6b4e496aed1d1eb1b7cb703cb4879c9ba
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