summaryrefslogtreecommitdiff
path: root/python/makefile.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/makefile.py')
-rw-r--r--python/makefile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/makefile.py b/python/makefile.py
index 573871fb68..45f032296f 100644
--- a/python/makefile.py
+++ b/python/makefile.py
@@ -91,7 +91,7 @@ lines = before.splitlines()
autoderp = "#AUTODERP# "
out_lines = []
bcdeps = []
-make_rule_re = re.compile("^([^:\s]+):\s*([^:\s]+)\s*($|\n)")
+make_rule_re = re.compile(r"^([^:\s]+):\s*([^:\s]+)\s*($|\n)")
while lines:
line = lines.pop(0)