summaryrefslogtreecommitdiffstats
path: root/lib/talloc/wscript
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-21 11:22:36 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-21 19:03:24 +1100
commit7cba3cfac8781061e4114573517b30baedbf891a (patch)
tree35470bb962d34fe5380f02f7124cf603fb097466 /lib/talloc/wscript
parent1d8733537e47439f8d79cd78d278eace1b795df3 (diff)
downloadsamba-7cba3cfac8781061e4114573517b30baedbf891a.tar.gz
samba-7cba3cfac8781061e4114573517b30baedbf891a.tar.xz
samba-7cba3cfac8781061e4114573517b30baedbf891a.zip
waf: replace the is_bundled option with private_library
'private_library' better captures what we are trying to get at when we bundle a library
Diffstat (limited to 'lib/talloc/wscript')
-rw-r--r--lib/talloc/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript
index 9550ea4cc6d..bdf21a347be 100644
--- a/lib/talloc/wscript
+++ b/lib/talloc/wscript
@@ -61,7 +61,7 @@ def build(bld):
abi_match='talloc* _talloc*',
hide_symbols=True,
vnum=VERSION,
- is_bundled=not bld.env.standalone_talloc,
+ private_library=not bld.env.standalone_talloc,
manpages='talloc.3')
# should we also install the symlink to libtalloc1.so here?
@@ -70,7 +70,7 @@ def build(bld):
deps='talloc',
enabled = bld.env.TALLOC_COMPAT1,
vnum=VERSION,
- is_bundled=not bld.env.standalone_talloc)
+ private_library=not bld.env.standalone_talloc)
if not getattr(bld.env, '_SAMBA_BUILD_', 0) == 4:
# s4 already has the talloc testsuite builtin to smbtorture