diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 7e0b90be89..9a929a6430 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -170,7 +170,7 @@ class Context(object): if l.startswith(starttext): l = l[len(starttext):] l = l.rstrip('"\n') - m = re.fullmatch('([0-9]+)\.([0-9]+)[.0-9]*', l) + m = re.fullmatch(r'([0-9]+)\.([0-9]+)[.0-9]*', l) return '%s.%s' % m.group(1, 2) print('error: could not determine glibc version') exit(1)