r10497: Export the list of dsdb ldb modules.
authorTim Potter <tpot@samba.org>
Mon, 26 Sep 2005 07:32:14 +0000 (07:32 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:38:56 +0000 (13:38 -0500)
(This used to be commit e88f5f423fcb2d603508f1529fce5738d03cc41b)

source4/dsdb/SConscript

index 34c1f8f7e2ae89249c1029d243c06dea7a541521..e5708ac62b46eafeff15782e76786d8c28fff5f9 100644 (file)
@@ -1,7 +1,20 @@
 Import('hostenv')
-hostenv.StaticLibrary('ldb_objectguid',['samdb/ldb_modules/objectguid.c'])
-hostenv.StaticLibrary('ldb_samldb',['samdb/ldb_modules/samldb.c'])
-hostenv.StaticLibrary('ldb_samba3sam',['samdb/ldb_modules/samba3sam.c'])
+
+dsdb_ldb_modules = []
+
+dsdb_ldb_modules.append(
+       hostenv.StaticLibrary('ldb_objectguid',
+       ['samdb/ldb_modules/objectguid.c']))
+
+dsdb_ldb_modules.append(
+       hostenv.StaticLibrary('ldb_samldb',['samdb/ldb_modules/samldb.c']))
+
+dsdb_ldb_modules.append(
+       hostenv.StaticLibrary('ldb_samba3sam',
+       ['samdb/ldb_modules/samba3sam.c']))
+
+Export('dsdb_ldb_modules')
+
 samdb_files = ['samdb/samdb.c','samdb/samdb_privilege.c','common/flag_mapping.c']
 hostenv.StaticLibrary('samdb',samdb_files)
 hostenv.proto_headers += hostenv.CProtoHeader(samdb_files)