40a81ae8eb
Python is an interpreter and therefore needs to create executable memory. Since it doesn't know how to sign that memory it requires the allow-unsigned-executable-memory entitlement to run in a hardened runtime. One must apply this entitlement to both Gramps.app and Gramps.app/Contents/MacOS/dot when codesigning them.
9 lines
270 B
Plaintext
9 lines
270 B
Plaintext
<?xml version="1.0" encoding="utf-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key><true/>
|
|
</dict>
|
|
</plist>
|