[Xfce4-commits] <midori:master> Upgrade waf to 1.5.16

Christian Dywan noreply at xfce.org
Sat Apr 24 12:46:01 CEST 2010


Updating branch refs/heads/master
         to 660ad06890f7849f764216bda8127c1a91235279 (commit)
       from a644d63767c65291a686dd9125166c856318c32d (commit)

commit 660ad06890f7849f764216bda8127c1a91235279
Author: Christian Dywan <christian at twotoasts.de>
Date:   Fri Apr 23 22:51:10 2010 +0200

    Upgrade waf to 1.5.16
    
    The new waf has better support for Windows and Vala.

 waf     |  Bin 78495 -> 91757 bytes
 wscript |    9 ++++++++-
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/waf b/waf
index 3de0239..22d00ed 100755
Binary files a/waf and b/waf differ
diff --git a/wscript b/wscript
index 759efa8..4b14385 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')



More information about the Xfce4-commits mailing list