From 3858b5db8be50dda5d994ecc8863b32a150a2528 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 31 May 2010 02:43:17 +0200 Subject: s4-waf: sanitize library names like the old build system did, only add -samba4 suffix for libraries that are bundled. --- lib/talloc/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/talloc') diff --git a/lib/talloc/wscript b/lib/talloc/wscript index 3a875060d7..61930f67e3 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -60,14 +60,14 @@ def build(bld): abi_file='ABI/talloc-%s.sigs' % VERSION, abi_match='talloc* _talloc*', hide_symbols=True, - vnum=VERSION) + vnum=VERSION, is_bundled=True) # should we also install the symlink to libtalloc1.so here? bld.SAMBA_LIBRARY('talloc-compat1', 'compat/talloc_compat1.c', deps='talloc', enabled = bld.env.TALLOC_COMPAT1, - vnum=VERSION) + vnum=VERSION, is_bundled=True) if not getattr(bld.env, '_SAMBA_BUILD_', 0) == 4: # s4 already has the talloc testsuite builtin to smbtorture -- cgit