From 12114e34292cb0b7acc0356bedd93fc98a894217 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Wed, 27 Jan 2016 23:53:23 +0100 Subject: [PATCH] typo --- playground/swig/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/swig/wscript b/playground/swig/wscript index 6890cc7d..1ba0341e 100644 --- a/playground/swig/wscript +++ b/playground/swig/wscript @@ -81,7 +81,7 @@ def build(bld): bld.add_group() python_site_package = '${PREFIX}/lib/python%s/site-packages' % bld.env.PYTHON_VERSION generated_py = bld.path.find_or_declare('extend/python/test_swig_waf.py') - bld(feature='py', source=generated_py, install_path=python_site_package, install_from=bld.path.get_bld()) + bld(features='py', source=generated_py, install_path=python_site_package, install_from=bld.path.get_bld()) bld.add_post_fun(exec_test_python)