Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source4/scripting/wscript_build

    r740 r988  
    33from samba_utils import MODE_755
    44
    5 bld.INSTALL_FILES('${SBINDIR}','bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate',
     5sbin_files = None
     6if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
     7    sbin_files = 'bin/samba_dnsupdate bin/samba_spnupdate bin/samba_upgradedns bin/samba_kcc'
     8
     9if sbin_files:
     10    bld.INSTALL_FILES('${SBINDIR}',
     11                      sbin_files,
     12                      chmod=MODE_755, python_fixup=True, flat=True)
     13
     14if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
     15    bld.INSTALL_FILES('${BINDIR}',
     16                  'bin/samba-tool',
    617                  chmod=MODE_755, python_fixup=True, flat=True)
    7 bld.INSTALL_FILES('${BINDIR}','bin/testparm',
    8                   chmod=MODE_755, python_fixup=True, flat=True)
     18
     19)
Note: See TracChangeset for help on using the changeset viewer.