diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2009-11-16 15:19:42 -0800 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2009-11-16 15:19:42 -0800 |
commit | c0b10c29492683a734e1873ab0a31fcca8b351cb (patch) | |
tree | 560610c2c0c76a0d049c1a7b9a89ce7dfc50faa0 /indra/newview/viewer_manifest.py | |
parent | d19d581b485bf314d7a97e1348a77bad8835db77 (diff) |
EXT-2529 Fixed viewer_manifest.py to check secondlife-bin.exe for bad manifest linking. Reviewed by Palmer.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 7e5c30a978..64cfdf2704 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -221,10 +221,12 @@ class WindowsManifest(ViewerManifest): def construct(self): super(WindowsManifest, self).construct() + + self.enable_crt_manifest_check() + # Find secondlife-bin.exe in the 'configuration' dir, then rename it to the result of final_exe. self.path(src='%s/secondlife-bin.exe' % self.args['configuration'], dst=self.final_exe()) - self.enable_crt_manifest_check() # Plugin host application self.path(os.path.join(os.pardir, |