build: subunit and popt need to be marked as private libraries
authorAndrew Tridgell <tridge@samba.org>
Wed, 20 Oct 2010 21:58:35 +0000 (08:58 +1100)
committerAndrew Tridgell <tridge@samba.org>
Thu, 21 Oct 2010 08:03:24 +0000 (19:03 +1100)
they have no vnum

lib/popt/wscript
lib/subunit/c/wscript

index 7d236dd3365778fd133468586ebbfee5d7d22d9f..7fd15ed53a20075be387e60c11e4e0905add9756 100644 (file)
@@ -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)
index 75449121c63723b03919f71f55dafc4230dabf0d..3e5311d79f5ca8ec57d80897a61215cd7deff702 100644 (file)
@@ -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')