summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-09-23 14:49:39 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-09-23 15:49:25 -0400
commit812916f5335f54b1b3944889fedc28b78997ebf3 (patch)
treeaded3e33b3e9c711c623ed73604bba4a6df477a8 /buildscripts
parenta20269dfb7d287260cd30f10fd2dfeb01a48528f (diff)
downloadmongo-812916f5335f54b1b3944889fedc28b78997ebf3.tar.gz
BUILD-365: Create Windows Enterprise Zip File with vcredist and dependent dlls
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/make_archive.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildscripts/make_archive.py b/buildscripts/make_archive.py
index 840b134e717..8a9516a76e0 100755
--- a/buildscripts/make_archive.py
+++ b/buildscripts/make_archive.py
@@ -170,7 +170,8 @@ def get_preferred_filename(input_filename, transformations):
returns the substituted string
'''
for match, replace in transformations:
- if input_filename.startswith(match):
+ input_filename_lower = input_filename.lower()
+ if input_filename_lower.startswith(match):
return replace + input_filename[len(match):]
return input_filename