diff options
author | brad kittenbrink <brad@lindenlab.com> | 2009-09-23 19:46:36 -0400 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2009-09-23 19:46:36 -0400 |
commit | 0eedd1d9e8490ae771c8ea4af5c412d95385c800 (patch) | |
tree | 617c85c018169904a8477c9b45b5bef33498f6ce /indra/newview/viewer_manifest.py | |
parent | bd0c306752a5e54a5c29e1c2e43e4b655a4d8fff (diff) |
Oops libtcmalloc_minimal.dll was being packaged in a subdir it shouldn't have been.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-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 af3868394b..f62ed4b374 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -306,11 +306,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): |