diff options
-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') |