This commit is contained in:
Thomas Nagy 2016-01-27 23:53:23 +01:00
parent e10998ff54
commit 12114e3429
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 1 additions and 1 deletions

View File

@ -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)