--- 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: