Re: [Qemu-devel] [PATCH 02/22] configure: early test for supported targets

2017-07-04 Thread Daniel P. Berrange
On Tue, Jul 04, 2017 at 01:11:55PM +0200, Paolo Bonzini wrote: > Check for unsupported targets in target_list, and print an > error early in the configuration process. > > Reviewed-by: Richard Henderson > Signed-off-by: Paolo Bonzini > --- > v2:

[Qemu-devel] [PATCH 02/22] configure: early test for supported targets

2017-07-04 Thread Paolo Bonzini
Check for unsupported targets in target_list, and print an error early in the configuration process. Reviewed-by: Richard Henderson Signed-off-by: Paolo Bonzini --- v2: place ;; on a separate line [Daniel] configure | 70

Re: [Qemu-devel] [PATCH 02/22] configure: early test for supported targets

2017-07-04 Thread Paolo Bonzini
On 04/07/2017 10:32, Daniel P. Berrange wrote: >> if test -z "${target_list+xxx}" ; then >> -target_list="$default_target_list" >> +for target in $default_target_list; do >> +supported_target $target 2>/dev/null && \ >> +target_list="$target_list $target" >> +

Re: [Qemu-devel] [PATCH 02/22] configure: early test for supported targets

2017-07-04 Thread Daniel P. Berrange
On Mon, Jul 03, 2017 at 06:34:33PM +0200, Paolo Bonzini wrote: > Check for unsupported targets in target_list, and print an > error early in the configuration process. > > Signed-off-by: Paolo Bonzini > --- > configure | 65 >

Re: [Qemu-devel] [PATCH 02/22] configure: early test for supported targets

2017-07-03 Thread Richard Henderson
On 07/03/2017 09:34 AM, Paolo Bonzini wrote: Check for unsupported targets in target_list, and print an error early in the configuration process. Signed-off-by: Paolo Bonzini --- configure | 65 ++- 1 file

[Qemu-devel] [PATCH 02/22] configure: early test for supported targets

2017-07-03 Thread Paolo Bonzini
Check for unsupported targets in target_list, and print an error early in the configuration process. Signed-off-by: Paolo Bonzini --- configure | 65 ++- 1 file changed, 43 insertions(+), 22 deletions(-) diff