s4-script: install some of the samba scripts in bin/ during build
authorAndrew Tridgell <tridge@samba.org>
Fri, 3 Jun 2011 22:22:30 +0000 (08:22 +1000)
committerAndrew Tridgell <tridge@samba.org>
Mon, 6 Jun 2011 02:26:11 +0000 (12:26 +1000)
source4/scripting/bin/wscript_build [new file with mode: 0644]
source4/scripting/wscript_build

diff --git a/source4/scripting/bin/wscript_build b/source4/scripting/bin/wscript_build
new file mode 100644 (file)
index 0000000..e52b32b
--- /dev/null
@@ -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='.')
index 03f188f7fa87be536fd9e02e62739429b78f909d..d94fc4fe9ccd10f397b44a16a4bef1c6c4650a3b 100644 (file)
@@ -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')