aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2019-04-03 11:53:23 -0700
committerGerald Combs <gerald@wireshark.org>2019-04-03 20:31:43 +0000
commit6fc00612b4cf3d660bd8422df4af3b94aab618bd (patch)
tree9d66fd0c87edb45dab2c91c5e22fc50f1b475009 /packaging
parent00e2434a6f596ed203944c21246abdf34534d11c (diff)
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>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/macosx/osx-app.sh.in b/packaging/macosx/osx-app.sh.in
index 64c6c1a66f..7420e3a58b 100755
--- a/packaging/macosx/osx-app.sh.in
+++ b/packaging/macosx/osx-app.sh.in
@@ -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 \