summaryrefslogtreecommitdiff
path: root/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorcallumprentice <none@none>2012-08-15 20:04:10 -0700
committercallumprentice <none@none>2012-08-15 20:04:10 -0700
commitd400bc2a3fd30a446d00243e219e183697a610a5 (patch)
tree459a657f4f638c049cc6bb4f8c359aeb73b68a81 /indra/newview/viewer_manifest.py
parentf586a441cab0b27fd69cc6dfcf354e3da927d1c5 (diff)
Add explicit reference to keychain to use
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rw-r--r--indra/newview/viewer_manifest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 80107d5776..095a64ca77 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -834,7 +834,8 @@ class DarwinManifest(ViewerManifest):
keychain_pwd = open(keychain_pwd_path).read().rstrip()
self.run_command('security unlock-keychain -p "%s" "%s/Library/Keychains/viewer.keychain"' % ( keychain_pwd, home_path ) )
- self.run_command('codesign --force --sign --verbose %(identity)r %(bundle)r' % {
+ self.run_command('codesign --force --keychain '"%(home_path)/Library/Keychains/viewer.keychain"' --sign --verbose %(identity)r %(bundle)r' % {i
+ 'home_path' : home_path,
'identity': identity,
'bundle': self.get_dst_prefix()
})