diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-06-04 08:22:30 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-06-06 12:26:11 +1000 |
commit | 473b3446998ca49e6597e30f8bbca43fd7215769 (patch) | |
tree | e615a1ed6b44afcbd13ec75999156be45040d230 /source4/scripting | |
parent | 0e1d7eb429a3c6b34ed659f86b8d7a92434acd37 (diff) | |
download | samba-473b3446998ca49e6597e30f8bbca43fd7215769.tar.gz samba-473b3446998ca49e6597e30f8bbca43fd7215769.tar.bz2 samba-473b3446998ca49e6597e30f8bbca43fd7215769.zip |
s4-script: install some of the samba scripts in bin/ during build
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/bin/wscript_build | 5 | ||||
-rw-r--r-- | source4/scripting/wscript_build | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/source4/scripting/bin/wscript_build b/source4/scripting/bin/wscript_build new file mode 100644 index 0000000000..e52b32bc02 --- /dev/null +++ b/source4/scripting/bin/wscript_build @@ -0,0 +1,5 @@ +#!/usr/bin/env python + +bld.SAMBA_SCRIPT('samba_dnsupdate', pattern='samba_dnsupdate', installdir='.') +bld.SAMBA_SCRIPT('samba_spnupdate', pattern='samba_spnupdate', installdir='.') +bld.SAMBA_SCRIPT('upgradeprovision', pattern='upgradeprovision', installdir='.') diff --git a/source4/scripting/wscript_build b/source4/scripting/wscript_build index 03f188f7fa..d94fc4fe9c 100644 --- a/source4/scripting/wscript_build +++ b/source4/scripting/wscript_build @@ -4,3 +4,5 @@ from samba_utils import MODE_755 bld.INSTALL_FILES('${SBINDIR}','bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate', chmod=MODE_755, python_fixup=True, flat=True) + +bld.RECURSE('bin') |