From: Roger Pau Monne Date: Fri, 29 Jun 2018 08:18:04 +0000 (+0200) Subject: osstest: set the make command to use for xen-build X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=05eaa3d0d7e914765a9543bc36552f3cb39841bf;p=osstest.git osstest: set the make command to use for xen-build The default make on FreeBSD is the BSD make, and Xen requires the GNU make in order to build. Set the make command based on the OS for the Xen build. Signed-off-by: Roger Pau Monné Acked-by: Ian Jackson --- Changes since v1: - Use gmake for all BSDs. --- diff --git a/ts-xen-build b/ts-xen-build index 57913d4..48bf062 100755 --- a/ts-xen-build +++ b/ts-xen-build @@ -28,6 +28,7 @@ tsreadconfig(); selectbuildhost(\@ARGV); our $dokconfig = 1; +our $make = $ho->{OS} =~ m/bsd/ ? "gmake" : "make"; while (@ARGV && $ARGV[0] =~ m/^-/) { $_ = shift @ARGV; @@ -156,24 +157,24 @@ END buildcmd_stamped_logged(600, 'xen', 'kconfig', '',<