diff options
Diffstat (limited to 'waflib/extras/pgicc.py')
-rw-r--r-- | waflib/extras/pgicc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/waflib/extras/pgicc.py b/waflib/extras/pgicc.py index 9790b9c..f8068d5 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] |