Fix invalid escape sequence in build-many-glibcs.py
commit781427354068535f159388776da4f21043e237a8
authorJoseph Myers <josmyers@redhat.com>
Wed, 10 Jan 2024 13:01:39 +0000 (10 13:01 +0000)
committerJoseph Myers <josmyers@redhat.com>
Wed, 10 Jan 2024 13:01:39 +0000 (10 13:01 +0000)
tree15295e85305b2336731dab2b2256c487f0481a7d
parent497e4d503025c794a771d2c124123178f557623a
Fix invalid escape sequence in build-many-glibcs.py

Running build-many-glibcs.py with Python 3.12 or later produces a
warning:

build-many-glibcs.py:173: SyntaxWarning: invalid escape sequence '\.'
  m = re.fullmatch('([0-9]+)\.([0-9]+)[.0-9]*', l)

Use a raw string instead to avoid that warning.  (Note: I haven't
checked whether any other Python scripts included with glibc might
have issues with newer Python versions.)
scripts/build-many-glibcs.py