summaryrefslogtreecommitdiff
path: root/utils/common/deploy.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/common/deploy.py')
-rwxr-xr-xutils/common/deploy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/common/deploy.py b/utils/common/deploy.py
index 9912bfc2ca..fd1dcb4125 100755
--- a/utils/common/deploy.py
+++ b/utils/common/deploy.py
@@ -318,7 +318,7 @@ def finddlls(program, extrapaths = []):
318 dlls = [] 318 dlls = []
319 for line in cmdout[0].split('\n'): 319 for line in cmdout[0].split('\n'):
320 if re.match(r'\s*DLL Name', line) != None: 320 if re.match(r'\s*DLL Name', line) != None:
321 dll = re.sub(r'^\s*DLL Name:\s+([a-zA-Z_\-0-9\.]+).*$', r'\1', line) 321 dll = re.sub(r'^\s*DLL Name:\s+([a-zA-Z_\-0-9\.\+]+).*$', r'\1', line)
322 dlls.append(dll.lower()) 322 dlls.append(dll.lower())
323 323
324 # find DLLs in extrapaths and PATH environment variable. 324 # find DLLs in extrapaths and PATH environment variable.