]> xenbits.xensource.com Git - people/iwj/osstest.git/commitdiff
ts-kernel-build: Honour the homedir property
authorIan Campbell <ian.campbell@citrix.com>
Thu, 12 Sep 2013 11:15:49 +0000 (12:15 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Thu, 12 Sep 2013 14:20:25 +0000 (15:20 +0100)
Untested but following ts-xen-build.

ts-kernel-build

index c1d6b1cc575c217a51afba7274ccf1bc6015d6e6..5630dd72eca406dee5d51bb5ddb1cc4c6cc09c8d 100755 (executable)
@@ -27,7 +27,8 @@ $whhost ||= 'host';
 our $ho= selecthost($whhost);
 
 my $leaf= "build.$flight.$job";
-my $builddir= "/home/osstest/$leaf";
+my $homedir = get_host_property($ho, 'homedir', '/home/osstest');
+my $builddir= "$homedir/$leaf";
 
 my $makeflags= get_host_property($ho, 'build make flags', '-j4');