diff --git a/buildtools/config.py b/buildtools/config.py index 8072a2d2..cf9f2ba1 100644 --- a/buildtools/config.py +++ b/buildtools/config.py @@ -1033,7 +1033,7 @@ def canGetSOName(): def getSOName(filename): output = runcmd('objdump -p %s' % filename, True) - result = re.search('^\s+SONAME\s+(.+)$', output, re.MULTILINE) + result = re.search(r'^\s+SONAME\s+(.+)$', output, re.MULTILINE) if result: return result.group(1) return None