summaryrefslogtreecommitdiff
path: root/third_party/waf/waflib/extras/pgicc.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/waf/waflib/extras/pgicc.py')
-rw-r--r--third_party/waf/waflib/extras/pgicc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/waf/waflib/extras/pgicc.py b/third_party/waf/waflib/extras/pgicc.py
index 9790b9cf8ba..f8068d53c09 100644
--- a/third_party/waf/waflib/extras/pgicc.py
+++ b/third_party/waf/waflib/extras/pgicc.py
@@ -60,7 +60,7 @@ def get_pgi_version(conf, cc):
except Errors.WafError:
conf.fatal('Could not find pgi compiler %r' % cmd)
- version = re.findall('^COMPVER\s*=(.*)', out, re.M)
+ version = re.findall(r'^COMPVER\s*=(.*)', out, re.M)
if len(version) != 1:
conf.fatal('Could not determine the compiler version')
return version[0]