This commit is contained in:
Thomas Nagy 2016-05-22 03:13:28 +02:00
parent 15985db73d
commit 56b84dc5a5
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
3 changed files with 5 additions and 5 deletions

View File

@ -43,6 +43,7 @@ NEW IN WAF 1.9 preview 2
- Remove Task.dep_vars as it is never used (define Task.vars on instances if necessary)
- Remove the unused attribute 'mac_resources', use 'mac_files' instead (see demos/mac_app)
- Remove qt4 and kde4 from the default modules
- Refactored msvc.py
- Task.sig_vars, Task.sig_explit_deps and Task.sig_implicit_deps return None
- Use relative paths in apply_incpaths by default (and absolute ones when paths cross drives)
- Modify Utils.run_once so that it accepts a list of *args

1
TODO
View File

@ -1,6 +1,5 @@
Waf 1.9
-------
Refactor msvc.py
Update the documentation

View File

@ -327,11 +327,11 @@ def gather_msvc_detected_versions():
break
index += 1
match = version_pattern.match(version)
if not match:
continue
else:
if match:
versionnumber = float(match.group(1))
detected_versions.append((versionnumber, version+vcvar, prefix+"\\"+version))
else:
continue
detected_versions.append((versionnumber, version+vcvar, prefix+'\\'+version))
def fun(tup):
return tup[0]