Re: [Qemu-devel] [PATCH] configure: don't modify .status on error

2014-03-09 Thread Peter Maydell
On 9 March 2014 15:41, Michael S. Tsirkin wrote: > ./configure --help > make > > will try to re-run configure with --help > which isn't what was intended. > > The reason is that config.status was written > even on configure error. > Defer writing config.status until configure > has completed succe

[Qemu-devel] [PATCH] configure: don't modify .status on error

2014-03-09 Thread Michael S. Tsirkin
./configure --help make will try to re-run configure with --help which isn't what was intended. The reason is that config.status was written even on configure error. Defer writing config.status until configure has completed successfully. Signed-off-by: Michael S. Tsirkin --- configure | 27 +++