summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-09-23 22:58:25 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-09-23 22:58:25 -0400
commit2ce51c8e0d4bf84589bffa87e59f2401578c2572 (patch)
tree0710001e4098529ecc00dee05e30740b9846b0b5 /buildscripts
parente7f18a7e54ea66d0326fb62b9b477a8e9cd23d1c (diff)
downloadmongo-2ce51c8e0d4bf84589bffa87e59f2401578c2572.tar.gz
Revert "BUILD-365: Create Windows Enterprise Zip File with vcredist and dependent dlls"
This reverts commit e7f18a7e54ea66d0326fb62b9b477a8e9cd23d1c.
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/make_archive.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/buildscripts/make_archive.py b/buildscripts/make_archive.py
index f556d8e6559..840b134e717 100755
--- a/buildscripts/make_archive.py
+++ b/buildscripts/make_archive.py
@@ -170,9 +170,7 @@ def get_preferred_filename(input_filename, transformations):
returns the substituted string
'''
for match, replace in transformations:
- match_lower = match.lower()
- input_filename_lower = input_filename.lower()
- if input_filename_lower.startswith(match_lower):
+ if input_filename.startswith(match):
return replace + input_filename[len(match):]
return input_filename