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`
[Boris Bügling](https://github.com/neonichu)
[#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)
......
......@@ -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['STRIP_INSTALLED_PRODUCT'] = 'NO'
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
......
......@@ -45,6 +45,7 @@ module Pod
#
def custom_build_settings
settings = {
'CODE_SIGN_IDENTITY[sdk=iphoneos*]' => '',
'MACH_O_TYPE' => 'staticlib',
'OTHER_LDFLAGS' => '',
'OTHER_LIBTOOLFLAGS' => '',
......
......@@ -54,6 +54,7 @@ module Pod
settings['PRIVATE_HEADERS_FOLDER_PATH'] = ''
settings['PUBLIC_HEADERS_FOLDER_PATH'] = ''
end
settings['CODE_SIGN_IDENTITY[sdk=iphoneos*]'] = ''
settings
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