Upgrade waf to 1.5.16
The new waf has better support for Windows and Vala.
This commit is contained in:
parent
a644d63767
commit
660ad06890
2 changed files with 8 additions and 1 deletions
BIN
waf
vendored
BIN
waf
vendored
Binary file not shown.
9
wscript
9
wscript
|
@ -18,7 +18,10 @@ import Options
|
||||||
import Utils
|
import Utils
|
||||||
import pproc as subprocess
|
import pproc as subprocess
|
||||||
import os
|
import os
|
||||||
import UnitTest
|
try:
|
||||||
|
import UnitTest
|
||||||
|
except:
|
||||||
|
import unittestw as UnitTest
|
||||||
import Task
|
import Task
|
||||||
from TaskGen import extension, feature, taskgen
|
from TaskGen import extension, feature, taskgen
|
||||||
import misc
|
import misc
|
||||||
|
@ -531,6 +534,10 @@ def build (bld):
|
||||||
if Options.commands['clean']:
|
if Options.commands['clean']:
|
||||||
distclean ()
|
distclean ()
|
||||||
|
|
||||||
|
def check (ctx):
|
||||||
|
# The real work happens in shutdown ()
|
||||||
|
pass
|
||||||
|
|
||||||
def distclean ():
|
def distclean ():
|
||||||
if os.path.exists ('po/LINGUAS'):
|
if os.path.exists ('po/LINGUAS'):
|
||||||
os.remove ('po/LINGUAS')
|
os.remove ('po/LINGUAS')
|
||||||
|
|
Loading…
Reference in a new issue