diff options
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 5 | 
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,                          ]  | 
