wscript: remove cxx test
authorPaul Brossier <piem@piem.org>
Sun, 15 Jul 2012 21:08:58 +0000 (15:08 -0600)
committerPaul Brossier <piem@piem.org>
Sun, 15 Jul 2012 21:08:58 +0000 (15:08 -0600)
wscript

diff --git a/wscript b/wscript
index 3e7dbf291b0d7cda4ac84b92ccbcfb6d8dc528d2..246c42e2cfa056801339c3e8656df57f14eb971a 100644 (file)
--- a/wscript
+++ b/wscript
@@ -52,16 +52,13 @@ def options(ctx):
   ctx.add_option('--with-target-platform', type='string',
       help='set target platform for cross-compilation', dest='target_platform')
   ctx.load('compiler_c')
-  ctx.load('compiler_cxx')
   ctx.load('gnu_dirs')
   ctx.load('waf_unit_test')
 
 def configure(ctx):
   import Options
   ctx.check_tool('compiler_c')
-  ctx.check_tool('compiler_cxx')
   ctx.check_tool('gnu_dirs') # helpful for autotools transition and .pc generation
-  #ctx.check_tool('misc') # needed for subst
   ctx.load('waf_unit_test')
   ctx.env.CFLAGS = ['-g']