diff options
author | Andrew Bartlett <abartlet@samba.org> | 2019-02-15 16:37:48 +1300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2019-03-21 04:06:14 +0000 |
commit | fdb6305c861a088f797d29889c51c0553cc048be (patch) | |
tree | 344ffc65c4bb6614f357bccda5456fdfd835baeb /libgpo | |
parent | 270d04e4ea0e3a7f4443557f5ff65e6f9e426295 (diff) | |
download | samba-fdb6305c861a088f797d29889c51c0553cc048be.tar.gz |
build: Remove bld.gen_python_environments()
This was part of --extra-python support.
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'libgpo')
-rw-r--r-- | libgpo/wscript_build | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libgpo/wscript_build b/libgpo/wscript_build index 6c412275958..f36ccf2c701 100644 --- a/libgpo/wscript_build +++ b/libgpo/wscript_build @@ -14,9 +14,8 @@ bld.SAMBA3_LIBRARY('gpext', deps='talloc ads TOKEN_UTIL auth gpo', private_library=True) -for env in bld.gen_python_environments(): - pyparam_util = bld.pyembed_libname('pyparam_util') - pyrpc_util = bld.pyembed_libname('pyrpc_util') - bld.SAMBA3_PYTHON('python_samba_libgpo', 'pygpo.c', - deps='%s gpext talloc ads TOKEN_UTIL auth %s' % (pyparam_util, pyrpc_util), - realname='samba/gpo.so') +pyparam_util = bld.pyembed_libname('pyparam_util') +pyrpc_util = bld.pyembed_libname('pyrpc_util') +bld.SAMBA3_PYTHON('python_samba_libgpo', 'pygpo.c', + deps='%s gpext talloc ads TOKEN_UTIL auth %s' % (pyparam_util, pyrpc_util), + realname='samba/gpo.so') |