diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-05-26 21:05:12 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-27 12:55:04 +0200 |
commit | 1754b52204563a722920805b76e6c571d0268434 (patch) | |
tree | 82031b2ff3dd8740ad51cc0c9efbbdfde0e19781 /source3 | |
parent | 4ae3cdcd7151237a858f668357d08ab6916bdb3b (diff) | |
download | samba-1754b52204563a722920805b76e6c571d0268434.tar.gz |
build: Install smbtar in waf build
Reviewed-by: Kai Blin <kai@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Mon May 27 12:55:05 CEST 2013 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/script/wscript_build | 7 | ||||
-rwxr-xr-x | source3/wscript_build | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/source3/script/wscript_build b/source3/script/wscript_build new file mode 100644 index 0000000000..fc59a65687 --- /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 f1d41c68a8..19c6d082aa 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') |