From 3bf4de0515ebb67093c4ddead2a5bdcd2702193e Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Tue, 8 Mar 2011 15:33:55 +0000 Subject: [PATCH] Document in the --bindings-type waf option that modular bindings are experimental --- bindings/python/wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index 96dc7a8ba..61292db4e 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -52,9 +52,11 @@ def set_pybindgen_pythonpath(env): def set_options(opt): opt.tool_options('python') + c = ("monolithic", "modular", "both") opt.add_option('--bindings-type', type="choice", - choices=("monolithic", "modular", "both"), - help=("Type of Python bindings to build"), + choices=c, + help=("Type of Python bindings to build %r. " + "Warning: the modular bindings are still experimental." % (c,)), default="monolithic", dest='bindings_type') opt.add_option('--disable-python',