From fcdb6c3ce54fdf5b34443959bd5a428a80ee52f8 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 14 Jul 2014 13:03:16 +0100 Subject: [PATCH] ts-xen-build: Honour cmdprefix_configure, cmdprefix_make These runvars can be set to specify a string (containing shell code) to be prefixed to the executions of ./configure and make. If not set, the behaviour is as as before. Signed-off-by: Ian Jackson Acked-by: Ian Campbell --- ts-xen-build | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ts-xen-build b/ts-xen-build index 7c9e804..661f186 100755 --- a/ts-xen-build +++ b/ts-xen-build @@ -94,6 +94,9 @@ sub build () { my $xend_opt= $r{enable_xend} =~ m/true/ ? "--enable-xend" : "--disable-xend"; my $ovmf_opt= $r{enable_ovmf} =~ m/true/ ? "--enable-ovmf" : "--disable-ovmf"; + my $configure_prefix = $r{cmdprefix_configure} // ''; + my $make_prefix = $r{cmdprefix_make} // ''; + buildcmd_stamped_logged(600, 'configure', <