Merged in my fix of bogus libtcmalloc_minimal.dll packaging.

master
brad kittenbrink 2009-09-28 11:03:00 -07:00
commit 3f05d552fe
1 changed files with 9 additions and 5 deletions

View File

@ -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):