Upgrade waf to 1.5.16

The new waf has better support for Windows and Vala.
This commit is contained in:
Christian Dywan 2010-04-23 22:51:10 +02:00
parent a644d63767
commit 660ad06890
2 changed files with 8 additions and 1 deletions

BIN
waf vendored

Binary file not shown.

View file

@ -18,7 +18,10 @@ import Options
import Utils
import pproc as subprocess
import os
import UnitTest
try:
import UnitTest
except:
import unittestw as UnitTest
import Task
from TaskGen import extension, feature, taskgen
import misc
@ -531,6 +534,10 @@ def build (bld):
if Options.commands['clean']:
distclean ()
def check (ctx):
# The real work happens in shutdown ()
pass
def distclean ():
if os.path.exists ('po/LINGUAS'):
os.remove ('po/LINGUAS')