mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
2c4255084a
metze
20 lines
596 B
Python
20 lines
596 B
Python
#!/usr/bin/env python
|
|
|
|
from samba_utils import MODE_755
|
|
|
|
sbin_files = None
|
|
if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
|
|
sbin_files = 'bin/samba_upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate bin/samba_upgradedns bin/samba_kcc'
|
|
|
|
if sbin_files:
|
|
bld.INSTALL_FILES('${SBINDIR}',
|
|
sbin_files,
|
|
chmod=MODE_755, python_fixup=True, flat=True)
|
|
|
|
if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
|
|
bld.INSTALL_FILES('${BINDIR}',
|
|
'bin/samba-tool',
|
|
chmod=MODE_755, python_fixup=True, flat=True)
|
|
|
|
bld.RECURSE('bin')
|