wscript: updated for waf r6742
authorPaul Brossier <piem@piem.org>
Wed, 30 Sep 2009 00:44:52 +0000 (02:44 +0200)
committerPaul Brossier <piem@piem.org>
Wed, 30 Sep 2009 00:44:52 +0000 (02:44 +0200)
wscript

diff --git a/wscript b/wscript
index b3eea20af01480389c2263717b7d41639e03d675..9c680be94ddb5387a322fbe6af6f13dd2abd252d 100644 (file)
--- a/wscript
+++ b/wscript
@@ -33,9 +33,7 @@ def set_options(opt):
   opt.tool_options('compiler_cc')
   opt.tool_options('compiler_cxx')
   opt.tool_options('gnu_dirs')
-  # include locally patched version of UnitTest until upstream incorporates patch
-  # see http://code.google.com/p/waf/issues/detail?id=542
-  opt.tool_options('UnitTest', tooldir='.')
+  opt.tool_options('UnitTest')
 
 def configure(conf):
   import Options
@@ -184,11 +182,10 @@ def shutdown(bld):
 def build_tests(bld):
   for target_name in bld.path.ant_glob('tests/src/**/*.c').split():
     this_target = bld.new_task_gen(
-        features = 'cprogram cc test',
+        features = 'cc cprogram test',
         source = target_name,
         target = target_name.split('.')[0],
         includes = 'src',
-        install_path = None,
         uselib_local = 'aubio')
     # phasevoc-jack also needs aubioext
     if target_name.endswith('test-phasevoc-jack.c'):