This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Fix OSX codesigning on El Capitan 10.11.4 - #3817
Merged
livecodepanos merged 2 commits intoMar 31, 2016
Merged
Conversation
OSX 10.11.4 uses a different method for signing non-MachO files as code which causes signature verification to fail on earlier versions of OSX. This commit removes the text files from the Contents/MacOS directory and uses a MachO executable to launch the AppleScript that opens a Finder window on the installer DMG root. The script has been moved to the resource directory.
Contributor
|
@livecode-vulcan review ok 610925e |
Contributor
livecode-vulcan
added a commit
that referenced
this pull request
Mar 31, 2016
Fix OSX codesigning on El Capitan 10.11.4 Apple changed the codesigning process for non-MachO executables on 10.11.4. The signatures that it generates cannot be verified by earlier versions of OSX so are reported as invalid and the affected app bundle is blocked from running. This PR changes the installer stub from a simple text script to a compiled executable in order to avoid having non-binary files in the code directory. A similar (but un-needed) file gets removed from the CEF framework directory when building the app bundle as well.
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Apple changed the codesigning process for non-MachO executables on 10.11.4. The signatures that it generates cannot be verified by earlier versions of OSX so are reported as invalid and the affected app bundle is blocked from running.
This PR changes the installer stub from a simple text script to a compiled executable in order to avoid having non-binary files in the code directory. A similar (but un-needed) file gets removed from the CEF framework directory when building the app bundle as well.