Commit c5d3cc85 authored by Boris Bügling's avatar Boris Bügling Committed by GitHub

Merge pull request #5528 from CocoaPods/xcode-8-codesigning

Fix code signing in Xcode 8
parents f6db4322 e07ba169
...@@ -70,6 +70,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -70,6 +70,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Boris Bügling](https://github.com/neonichu) [Boris Bügling](https://github.com/neonichu)
[#5529](https://github.com/CocoaPods/CocoaPods/issues/5529) [#5529](https://github.com/CocoaPods/CocoaPods/issues/5529)
* Fix linting with Xcode 8 by disabling it entirely.
[Boris Bügling](https://github.com/neonichu)
[#5528](https://github.com/CocoaPods/CocoaPods/issues/5528)
## 1.0.1 (2016-06-02) ## 1.0.1 (2016-06-02)
......
...@@ -138,6 +138,8 @@ module Pod ...@@ -138,6 +138,8 @@ module Pod
build_configuration.build_settings['TVOS_DEPLOYMENT_TARGET'] = tvos_deployment_target.to_s if tvos_deployment_target build_configuration.build_settings['TVOS_DEPLOYMENT_TARGET'] = tvos_deployment_target.to_s if tvos_deployment_target
build_configuration.build_settings['STRIP_INSTALLED_PRODUCT'] = 'NO' build_configuration.build_settings['STRIP_INSTALLED_PRODUCT'] = 'NO'
build_configuration.build_settings['CLANG_ENABLE_OBJC_ARC'] = 'YES' build_configuration.build_settings['CLANG_ENABLE_OBJC_ARC'] = 'YES'
build_configuration.build_settings['CODE_SIGNING_REQUIRED'] = 'NO'
build_configuration.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = 'NO_SIGNING/'
end end
end end
end end
......
...@@ -45,12 +45,13 @@ module Pod ...@@ -45,12 +45,13 @@ module Pod
# #
def custom_build_settings def custom_build_settings
settings = { settings = {
'MACH_O_TYPE' => 'staticlib', 'CODE_SIGN_IDENTITY[sdk=iphoneos*]' => '',
'OTHER_LDFLAGS' => '', 'MACH_O_TYPE' => 'staticlib',
'OTHER_LIBTOOLFLAGS' => '', 'OTHER_LDFLAGS' => '',
'PODS_ROOT' => '$(SRCROOT)', 'OTHER_LIBTOOLFLAGS' => '',
'PRODUCT_BUNDLE_IDENTIFIER' => 'org.cocoapods.${PRODUCT_NAME:rfc1034identifier}', 'PODS_ROOT' => '$(SRCROOT)',
'SKIP_INSTALL' => 'YES', 'PRODUCT_BUNDLE_IDENTIFIER' => 'org.cocoapods.${PRODUCT_NAME:rfc1034identifier}',
'SKIP_INSTALL' => 'YES',
} }
super.merge(settings) super.merge(settings)
end end
......
...@@ -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
......
Subproject commit 409958a75378ff70582af2fbabb1441c551ed1c7 Subproject commit 80dd96be49b786594986f612476c3342c54f2f71
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