From 9dfae978840ce54f0fe1ff2d0d8f4b723688bf01 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Thu, 23 Sep 2010 16:47:23 +0000 Subject: Fix matching of DLL name in deployment script. Allow DLL filenames to contain the plus sign. Fixes libstdc++-6.dll not getting recognized as DLL. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28150 a1c6a512-1295-4272-9138-f99709370657 --- utils/common/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = []): dlls = [] for line in cmdout[0].split('\n'): if re.match(r'\s*DLL Name', line) != None: - dll = re.sub(r'^\s*DLL Name:\s+([a-zA-Z_\-0-9\.]+).*$', r'\1', line) + dll = re.sub(r'^\s*DLL Name:\s+([a-zA-Z_\-0-9\.\+]+).*$', r'\1', line) dlls.append(dll.lower()) # find DLLs in extrapaths and PATH environment variable. -- cgit v1.2.3