From 05235a56e3261bacf27aca2a2e9e80b54f37f68d Mon Sep 17 00:00:00 2001 From: David Mulder Date: Fri, 10 Feb 2017 10:33:29 -0700 Subject: [PATCH] gpo: Install the samba_gpoupdate script The samba_gpoupdate script was not being installed by waf. Added samba_gpoupdate to the wscripts so it gets installed as part of a make install. Signed-off-by: David Mulder Reviewed-by: Garming Sam Reviewed-by: Andrew Bartlett --- source4/scripting/bin/wscript_build | 1 + source4/scripting/wscript_build | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source4/scripting/bin/wscript_build b/source4/scripting/bin/wscript_build index d572f5a3ab2..737f1bce411 100644 --- a/source4/scripting/bin/wscript_build +++ b/source4/scripting/bin/wscript_build @@ -7,5 +7,6 @@ if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'): 'samba_kcc', 'samba_upgradeprovision', 'samba_upgradedns', + 'samba_gpoupdate', 'gen_output.py']: bld.SAMBA_SCRIPT(script, pattern=script, installdir='.') diff --git a/source4/scripting/wscript_build b/source4/scripting/wscript_build index 39408ba85b1..2b9f3b6b2ee 100644 --- a/source4/scripting/wscript_build +++ b/source4/scripting/wscript_build @@ -4,7 +4,7 @@ from samba_utils import MODE_755 sbin_files = None if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'): - sbin_files = 'bin/samba_dnsupdate bin/samba_spnupdate bin/samba_upgradedns bin/samba_kcc' + sbin_files = 'bin/samba_dnsupdate bin/samba_spnupdate bin/samba_upgradedns bin/samba_kcc bin/samba_gpoupdate' if sbin_files: bld.INSTALL_FILES('${SBINDIR}', -- 2.47.3