Re: [Xen-devel] [PATCH] build: don't mandate availability of a fetcher program

2019-04-04 Thread Andrew Cooper
On 04/04/2019 14:13, Wei Liu wrote: > On Thu, Mar 14, 2019 at 02:08:47PM +, Wei Liu wrote: >> It is common that build hosts are isolated from outside world. They >> don't necessarily have wget or ftp installed. >> >> Turn the error into warning in configure. And point FETCHER to `false' >> comm

Re: [Xen-devel] [PATCH] build: don't mandate availability of a fetcher program

2019-04-04 Thread Wei Liu
On Thu, Mar 14, 2019 at 02:08:47PM +, Wei Liu wrote: > It is common that build hosts are isolated from outside world. They > don't necessarily have wget or ftp installed. > > Turn the error into warning in configure. And point FETCHER to `false' > command if neither wget nor ftp is available,

[Xen-devel] [PATCH] build: don't mandate availability of a fetcher program

2019-03-14 Thread Wei Liu
It is common that build hosts are isolated from outside world. They don't necessarily have wget or ftp installed. Turn the error into warning in configure. And point FETCHER to `false' command if neither wget nor ftp is available, so any attempt to download will result in error. Signed-off-by: We