summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-21 08:58:35 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-21 19:03:24 +1100
commit579f06e0014adf5c1ce3df6add4fb03d53673a3b (patch)
tree98839f40c93a26d5c01c824d8914fe3d29429e98
parente2a2c717573fda174a93f823c1c4bccf214052c0 (diff)
downloadsamba-579f06e0014adf5c1ce3df6add4fb03d53673a3b.tar.gz
samba-579f06e0014adf5c1ce3df6add4fb03d53673a3b.tar.bz2
samba-579f06e0014adf5c1ce3df6add4fb03d53673a3b.zip
build: subunit and popt need to be marked as private libraries
they have no vnum
-rw-r--r--lib/popt/wscript3
-rw-r--r--lib/subunit/c/wscript6
2 files changed, 5 insertions, 4 deletions
diff --git a/lib/popt/wscript b/lib/popt/wscript
index 7d236dd336..7fd15ed53a 100644
--- a/lib/popt/wscript
+++ b/lib/popt/wscript
@@ -15,5 +15,4 @@ def build(bld):
bld.SAMBA_LIBRARY('popt',
source='findme.c popt.c poptconfig.c popthelp.c poptparse.c',
cflags='-DDBL_EPSILON=__DBL_EPSILON__',
- is_bundled=True,
- )
+ private_library=True)
diff --git a/lib/subunit/c/wscript b/lib/subunit/c/wscript
index 75449121c6..3e5311d79f 100644
--- a/lib/subunit/c/wscript
+++ b/lib/subunit/c/wscript
@@ -10,5 +10,7 @@ def build(bld):
if bld.CONFIG_SET('USING_SYSTEM_SUBUNIT'):
return
- bld.SAMBA_LIBRARY('subunit', source='lib/child.c', is_bundled=True,
- includes='include')
+ bld.SAMBA_LIBRARY('subunit',
+ source='lib/child.c',
+ private_library=True,
+ includes='include')