diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-12-08 12:42:02 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-12-08 19:07:13 +0100 |
commit | 658f4597ee88cc51bb73ac88df0d28b335e358af (patch) | |
tree | 54c6244fac32268be49c1938d37233d582722035 | |
parent | 8c6b756aa792cc058938820a64a308b3dd380eee (diff) | |
download | samba-658f4597ee88cc51bb73ac88df0d28b335e358af.tar.gz samba-658f4597ee88cc51bb73ac88df0d28b335e358af.tar.bz2 samba-658f4597ee88cc51bb73ac88df0d28b335e358af.zip |
talloc: build pytalloc-util with the same logic as libtalloc
metze
-rw-r--r-- | lib/talloc/wscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript index 9d7fcc2e4c..e83caa5f4e 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -108,8 +108,11 @@ def build(bld): bld.SAMBA_LIBRARY('pytalloc-util', source='pytalloc_util.c', public_deps='talloc', + abi_file='ABI/pytalloc-util-%s.sigs' % VERSION, + abi_match='py* Py*', pyext=True, - vnum=VERSION, + vnum=vnum, + private_library=private_library, ) bld.INSTALL_FILES('${INCLUDEDIR}', 'pytalloc.h') bld.SAMBA_PYTHON('pytalloc', |