From 1754b52204563a722920805b76e6c571d0268434 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 26 May 2013 21:05:12 +1000 Subject: [PATCH] build: Install smbtar in waf build Reviewed-by: Kai Blin Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Mon May 27 12:55:05 CEST 2013 on sn-devel-104 --- source3/script/wscript_build | 7 +++++++ source3/wscript_build | 1 + 2 files changed, 8 insertions(+) create mode 100644 source3/script/wscript_build 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') -- 2.11.4.GIT