From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Jackson Subject: [OSSTEST PATCH 07/13] ts-xen-build: Honour cmdprefix_configure, cmdprefix_make Date: Tue, 15 Jul 2014 16:22:21 +0100 Message-ID: <1405437747-12753-8-git-send-email-ian.jackson@eu.citrix.com> References: <1405437747-12753-1-git-send-email-ian.jackson@eu.citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1X74Z0-0005lH-L5 for xen-devel@lists.xenproject.org; Tue, 15 Jul 2014 15:22:42 +0000 In-Reply-To: <1405437747-12753-1-git-send-email-ian.jackson@eu.citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: Ian Jackson , Ian Campbell List-Id: xen-devel@lists.xenproject.org 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 --- 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', <