summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Lihatskiy <andreylproductengine@lindenlab.com>2022-02-03 00:37:29 +0000
committerAndrey Lihatskiy <andreylproductengine@lindenlab.com>2022-02-03 00:37:29 +0000
commit832e62f440587690019d8ed9fc096a6e80ba43a6 (patch)
tree2e397db44e1bd63e0da2f4cad54b4564341b0a3d
parentae1f6fb1ab03bb9ace0f4e0ed87d5160e2cee1fb (diff)
DRTVWR-555 Sign SLVersionChecker with the hardened runtime
-rwxr-xr-xindra/newview/viewer_manifest.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index a7a6a01d28..53c1c8a537 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -1306,10 +1306,9 @@ class DarwinManifest(ViewerManifest):
'-p', keychain_pwd, viewer_keychain])
sign_retry_wait=15
resources = app_in_dmg + "/Contents/Resources/"
- plain_sign = list(itertools.chain(
- glob.glob(resources + "llplugin/*.dylib"),
- [resources + "updater/SLVersionChecker"]))
+ plain_sign = glob.glob(resources + "llplugin/*.dylib")
deep_sign = [
+ resources + "updater/SLVersionChecker",
resources + "SLPlugin.app/Contents/MacOS/SLPlugin",
app_in_dmg,
]