Update waf to v1.8.17

This allows us to call it from Python 3.5 without the failures we previously had.
This commit is contained in:
Virgil Dupras 2015-12-25 10:26:56 -05:00
parent 4b3c1e2828
commit 9c53b2218c
2 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ def build_cocoa(edition, dev):
delete_files_with_pattern(pydep_folder, '__pycache__')
print("Compiling with WAF")
os.chdir('cocoa')
print_and_do('python2.7 waf configure --edition {} && python2.7 waf'.format(edition))
print_and_do('{0} waf configure --edition {1} && {0} waf'.format(sys.executable, edition))
os.chdir('..')
app.copy_executable('cocoa/build/dupeGuru')
build_help(edition)

BIN
cocoa/waf vendored

Binary file not shown.