summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--source3/script/wscript_build7
-rwxr-xr-xsource3/wscript_build1
2 files changed, 8 insertions, 0 deletions
diff --git a/source3/script/wscript_build b/source3/script/wscript_build
new file mode 100644
index 00000000000..fc59a65687c
--- /dev/null
+++ b/source3/script/wscript_build
@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+
+from samba_utils import MODE_755
+
+bld.INSTALL_FILES('${BINDIR}',
+ 'smbtar',
+ chmod=MODE_755, flat=True)
diff --git a/source3/wscript_build b/source3/wscript_build
index f1d41c68a83..19c6d082aab 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -1637,6 +1637,7 @@ bld.RECURSE('modules')
bld.RECURSE('pam_smbpass')
bld.RECURSE('passdb')
bld.RECURSE('rpc_server')
+bld.RECURSE('script')
bld.RECURSE('winbindd')
bld.RECURSE('../examples/auth')
bld.RECURSE('../examples/libsmbclient')