mirror of
https://github.com/samba-team/samba.git
synced 2025-03-01 04:58:35 +03:00
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Fri Feb 24 15:07:27 CET 2012 on sn-devel-104
14 lines
422 B
Python
14 lines
422 B
Python
#!/usr/bin/env python
|
|
|
|
from samba_utils import MODE_755
|
|
|
|
bld.INSTALL_FILES('${SBINDIR}',
|
|
'bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate bin/samba_upgradedns',
|
|
chmod=MODE_755, python_fixup=True, flat=True)
|
|
|
|
bld.INSTALL_FILES('${BINDIR}',
|
|
'bin/samba-tool bin/samba_kcc',
|
|
chmod=MODE_755, python_fixup=True, flat=True)
|
|
|
|
bld.RECURSE('bin')
|