diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-09-10 14:21:57 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-09-11 08:35:56 +0200 |
commit | 318770a67ffea2618d01f9636ce0e4a136854264 (patch) | |
tree | b8be7bf98c4e61bdbaac3aff2b4415e21e58c487 | |
parent | 15c793fa34d66d599bfd05a5bab379fa5351d173 (diff) | |
download | samba-318770a67ffea2618d01f9636ce0e4a136854264.tar.gz samba-318770a67ffea2618d01f9636ce0e4a136854264.tar.bz2 samba-318770a67ffea2618d01f9636ce0e4a136854264.zip |
s4:scripting: install samba_kcc to SBINDIR
It's use as "%s/samba_kcc", dyn_SCRIPTSBINDIR" similar
to samba_spnupdate and samba_dnsupdate.
metze
-rw-r--r-- | source4/scripting/wscript_build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/wscript_build b/source4/scripting/wscript_build index b392d3a875..ddd553386e 100644 --- a/source4/scripting/wscript_build +++ b/source4/scripting/wscript_build @@ -4,7 +4,7 @@ from samba_utils import MODE_755 sbin_files = None if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'): - sbin_files = 'bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate bin/samba_upgradedns' + sbin_files = 'bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate bin/samba_upgradedns bin/samba_kcc' if sbin_files: bld.INSTALL_FILES('${SBINDIR}', @@ -13,7 +13,7 @@ if sbin_files: if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'): bld.INSTALL_FILES('${BINDIR}', - 'bin/samba-tool bin/samba_kcc', + 'bin/samba-tool', chmod=MODE_755, python_fixup=True, flat=True) bld.RECURSE('bin') |