From: Christian Dywan Date: Fri, 23 Apr 2010 20:51:10 +0000 (+0200) Subject: Upgrade waf to 1.5.16 X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=660ad06890f7849f764216bda8127c1a91235279;p=midori Upgrade waf to 1.5.16 The new waf has better support for Windows and Vala. --- diff --git a/waf b/waf index 3de0239b..22d00ed2 100755 Binary files a/waf and b/waf differ diff --git a/wscript b/wscript index 759efa8d..4b143856 100644 --- a/wscript +++ b/wscript @@ -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')