bindings/python/wscript
changeset 7545 ac0569e8cb7d
parent 7536 1f697c6f0b12
child 7555 9dfb9d9c295f
--- a/bindings/python/wscript	Mon Sep 26 10:41:55 2011 +0100
+++ b/bindings/python/wscript	Mon Sep 26 15:31:06 2011 +0100
@@ -38,7 +38,7 @@
 
 
 def options(opt):
-    opt.tool_options('python')
+    opt.tool_options('python', ["waf-tools"])
     opt.add_option('--disable-python',
                    help=("Don't build Python bindings."),
                    action="store_true", default=False,
@@ -91,7 +91,7 @@
         conf.env.PYTHON = Options.options.with_python
 
     try:
-        conf.check_tool('python')
+        conf.check_tool('python', ["waf-tools"])
         conf.check_python_version((2,3))
         conf.check_python_headers()
     except Configure.ConfigurationError, ex: