macOS: Update a comment in osx-app.sh.in.

The answer to the question "do we need to add hardened runtime
entitlements or exceptions?" in osx-app.sh is "yes". Update a comment
accordingly.

Change-Id: Icc6f9ed31838aa6342f405a244e726586e9c0c4d
Reviewed-on: https://code.wireshark.org/review/32703
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2019-04-03 11:53:23 -07:00
parent 00e2434a6f
commit 6fc00612b4
1 changed files with 3 additions and 3 deletions

View File

@ -448,12 +448,12 @@ codesign_file () {
# https://developer.apple.com/library/archive/technotes/tn2206/_index.html
# https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution/resolving_common_notarization_issues?language=objc
#
# XXX do we need to add hardened runtime entitlements or exceptions, e.g.
# com.apple.security.cs.allow-unsigned-executable-memory for Lua?
# XXX Do we need to add the com.apple.security.cs.allow-unsigned-executable-memory
# entitlement for Lua?
# https://developer.apple.com/documentation/security/hardened_runtime_entitlements?language=objc
codesign \
--sign "Developer ID Application: $CODE_SIGN_IDENTITY" \
--options=runtime \
--options runtime \
--entitlements "@CMAKE_SOURCE_DIR@/packaging/macosx/entitlements.plist" \
--timestamp \
--verbose \