diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 11:22:36 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:24 +1100 |
commit | 7cba3cfac8781061e4114573517b30baedbf891a (patch) | |
tree | 35470bb962d34fe5380f02f7124cf603fb097466 /lib/tevent/wscript | |
parent | 1d8733537e47439f8d79cd78d278eace1b795df3 (diff) | |
download | samba-7cba3cfac8781061e4114573517b30baedbf891a.tar.gz samba-7cba3cfac8781061e4114573517b30baedbf891a.tar.bz2 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/tevent/wscript')
-rw-r--r-- | lib/tevent/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/wscript b/lib/tevent/wscript index 677ab8c75a..43d23e54c4 100644 --- a/lib/tevent/wscript +++ b/lib/tevent/wscript @@ -74,7 +74,7 @@ def build(bld): abi_file='ABI/tevent-%s.sigs' % VERSION, abi_match='tevent_* _tevent_*', vnum=VERSION, - is_bundled=not bld.env.standalone_tevent) + private_library=not bld.env.standalone_tevent) if bld.env.standalone_tevent: bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig' |