summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/replace/wscript4
-rw-r--r--lib/talloc/wscript4
-rw-r--r--lib/tdb/wscript4
-rw-r--r--lib/tevent/wscript4
4 files changed, 16 insertions, 0 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript
index 70475c4f29..511cbeac30 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -353,3 +353,7 @@ def build(bld):
source='hdr_replace.h',
target='stdbool.h',
enabled = not bld.CONFIG_SET('HAVE_STDBOOL_H'))
+
+def dist():
+ '''makes a tarball for distribution'''
+ samba_dist.dist()
diff --git a/lib/talloc/wscript b/lib/talloc/wscript
index fadb4590cc..7dc12c5de9 100644
--- a/lib/talloc/wscript
+++ b/lib/talloc/wscript
@@ -66,3 +66,7 @@ def test(ctx):
import Utils
cmd = os.path.join(Utils.g_module.blddir, 'talloc_testsuite')
os.system(cmd)
+
+def dist():
+ '''makes a tarball for distribution'''
+ samba_dist.dist()
diff --git a/lib/tdb/wscript b/lib/tdb/wscript
index 90fa191bf8..d80b7209b0 100644
--- a/lib/tdb/wscript
+++ b/lib/tdb/wscript
@@ -76,3 +76,7 @@ def test(ctx):
import Utils
cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture')
os.system(cmd)
+
+def dist():
+ '''makes a tarball for distribution'''
+ samba_dist.dist()
diff --git a/lib/tevent/wscript b/lib/tevent/wscript
index 9f7e25d241..ee15b95610 100644
--- a/lib/tevent/wscript
+++ b/lib/tevent/wscript
@@ -58,3 +58,7 @@ def test(ctx):
'''test tevent'''
print("The tevent testsuite is part of smbtorture in samba4")
+
+def dist():
+ '''makes a tarball for distribution'''
+ samba_dist.dist()