summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-05 09:58:23 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:27:26 +1000
commit7ae4372124a7fde2404f9e626054e7856c18f733 (patch)
tree59364b75d27fbe530032e0ac0648004567719b2a /source4/lib
parentfe060c8f50de23c4f3503a32c3237bb80bd68331 (diff)
downloadsamba-7ae4372124a7fde2404f9e626054e7856c18f733.tar.gz
samba-7ae4372124a7fde2404f9e626054e7856c18f733.tar.bz2
samba-7ae4372124a7fde2404f9e626054e7856c18f733.zip
s4-waf: fixed waf distcheck for our standalone libs and s4
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/ldb/wscript9
1 files changed, 7 insertions, 2 deletions
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript
index 971c6688f3..911eb77fb2 100644
--- a/source4/lib/ldb/wscript
+++ b/source4/lib/ldb/wscript
@@ -15,8 +15,9 @@ sys.path.insert(0, srcdir + '/buildtools/wafsamba')
import wafsamba, samba_dist
-samba_dist.DIST_DIRS('''lib/ldb:. lib/replace:lib/replace lib/talloc:lib/talloc
- lib/tdb:lib/tdb lib/tevent:lib/tevent buildtools:buildtools''')
+samba_dist.DIST_DIRS('''source4/lib/ldb:. lib/replace:lib/replace lib/talloc:lib/talloc
+ lib/tdb:lib/tdb lib/tevent:lib/tevent lib/popt:lib/popt
+ buildtools:buildtools''')
def set_options(opt):
@@ -180,3 +181,7 @@ def test(ctx):
import Utils
cmd = 'tests/test-tdb.sh'
os.system(cmd)
+
+def dist():
+ '''makes a tarball for distribution'''
+ samba_dist.dist()