From 9fca87fb8e709322f3be982ea4c90f5d0b6c15df Mon Sep 17 00:00:00 2001 From: "Manuel Amador (Rudd-O)" Date: Sun, 29 Aug 2010 20:13:28 -0700 Subject: [PATCH] Copy xenserver-patch.tgz into patch.tgz so the systemvm patch process does not fail (ported from master) --- wscript_build | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wscript_build b/wscript_build index dfcd24d404a..5ddcc3495d6 100644 --- a/wscript_build +++ b/wscript_build @@ -246,6 +246,15 @@ if bld.env.DISTRO != "Windows": bld.process_after(tgen) bld.install_as("${AGENTLIBDIR}/scripts/vm/hypervisor/%s/patch.tgz"%virttech, "%s-patch.tgz"%virttech) +tgen = bld( + rule = 'cp ${SRC} ${TGT}', + source = 'xenserver-patch.tgz', + target = 'patch.tgz', + after = 'xenserver-patch_tgz', + name = 'patch_tgz' +) +bld.process_after(tgen) + # ================== End creation of patch.tgz's ====================