diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2009-09-28 18:24:42 -0700 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2009-09-28 18:24:42 -0700 |
commit | fa0819261f76f1c647e62af5bad8dad126e963fb (patch) | |
tree | 52041cf3c2b7ab2db92ff05f395348f5c9504628 /indra | |
parent | 719d369f5aab285838369e16dab3ffb688ededd7 (diff) | |
parent | 3f05d552fec9d4d9a17c9131f445a7db0eef561f (diff) |
merge
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index d21e520974..8a3905633f 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -334,11 +334,15 @@ class WindowsManifest(ViewerManifest): dst="updater.exe") # For google-perftools tcmalloc allocator. - try: - self.path('%s/libtcmalloc_minimal.dll' % self.args['configuration']) - except: - print "Skipping libtcmalloc_minimal.dll" - pass + if self.prefix(src=self.args['configuration'], dst=""): + try: + if self.args['configuration'] == 'Debug': + self.path('libtcmalloc_minimal-debug.dll') + else: + self.path('libtcmalloc_minimal.dll') + except: + print "Skipping libtcmalloc_minimal.dll" + self.end_prefix() def nsi_file_commands(self, install=True): def wpath(path): |