2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00

Issue 1230

This commit is contained in:
Thomas Nagy 2012-12-05 00:38:58 +01:00
parent 79e2901e4e
commit f824ab8481
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
NEW IN WAF 1.7.7
----------------
* XLC and XLF detection fixes #1230
NEW IN WAF 1.7.6
----------------
* Better encapsulation of conf.check_cfg(uselib_store=...) defines #1212

View File

@ -44,7 +44,7 @@ def get_xlf_version(conf, fc):
except Errors.WafError:
conf.fatal('Could not find xlf %r' % cmd)
for v in (r"IBM XL Fortran.* V(?P<major>\d*)\.(?P<minor>\d*)"):
for v in (r"IBM XL Fortran.* V(?P<major>\d*)\.(?P<minor>\d*)",):
version_re = re.compile(v, re.I).search
match = version_re(out or err)
if match: