Commit 7fe90adb authored by Boris Bügling's avatar Boris Bügling

Disable `CODE_SIGN_IDENTITY` for `iphoneos`

This sets `CODE_SIGN_IDENTITY` to empty for all generated aggregate and
Pod targets.
parent e304ba5a
...@@ -45,6 +45,7 @@ module Pod ...@@ -45,6 +45,7 @@ module Pod
# #
def custom_build_settings def custom_build_settings
settings = { settings = {
'CODE_SIGN_IDENTITY[sdk=iphoneos*]' => '',
'MACH_O_TYPE' => 'staticlib', 'MACH_O_TYPE' => 'staticlib',
'OTHER_LDFLAGS' => '', 'OTHER_LDFLAGS' => '',
'OTHER_LIBTOOLFLAGS' => '', 'OTHER_LIBTOOLFLAGS' => '',
......
...@@ -54,6 +54,7 @@ module Pod ...@@ -54,6 +54,7 @@ module Pod
settings['PRIVATE_HEADERS_FOLDER_PATH'] = '' settings['PRIVATE_HEADERS_FOLDER_PATH'] = ''
settings['PUBLIC_HEADERS_FOLDER_PATH'] = '' settings['PUBLIC_HEADERS_FOLDER_PATH'] = ''
end end
settings['CODE_SIGN_IDENTITY[sdk=iphoneos*]'] = ''
settings settings
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