From 832e62f440587690019d8ed9fc096a6e80ba43a6 Mon Sep 17 00:00:00 2001 From: Andrey Lihatskiy <andreylproductengine@lindenlab.com> Date: Thu, 3 Feb 2022 00:37:29 +0000 Subject: [PATCH] DRTVWR-555 Sign SLVersionChecker with the hardened runtime --- indra/newview/viewer_manifest.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index a7a6a01d28d..53c1c8a5374 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -1306,10 +1306,9 @@ def package_finish(self): '-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, ] -- GitLab