mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
Issue 1230
This commit is contained in:
parent
79e2901e4e
commit
f824ab8481
@ -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
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user