summaryrefslogtreecommitdiffstats
path: root/waflib/extras/pgicc.py
diff options
context:
space:
mode:
Diffstat (limited to 'waflib/extras/pgicc.py')
-rw-r--r--waflib/extras/pgicc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waflib/extras/pgicc.py b/waflib/extras/pgicc.py
index 9790b9cf..f8068d53 100644
--- a/waflib/extras/pgicc.py
+++ b/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]