Re: [Qemu-devel] [PATCH 1/1] configure: robustify big/little check

2014-05-28 Thread Cornelia Huck
On Wed, 28 May 2014 11:16:09 +0200 Markus Armbruster wrote: > Peter Maydell writes: > > > On 28 May 2014 09:46, Cornelia Huck wrote: > >> The check for big or little endianness relies on grep reporting > >> match/non-match on the generated binary. If the user specified > >> --binary-files=with

Re: [Qemu-devel] [PATCH 1/1] configure: robustify big/little check

2014-05-28 Thread Markus Armbruster
Peter Maydell writes: > On 28 May 2014 09:46, Cornelia Huck wrote: >> The check for big or little endianness relies on grep reporting >> match/non-match on the generated binary. If the user specified >> --binary-files=without-match in their GREP_OPTIONS, this will fail. >> Let's just explicitly

Re: [Qemu-devel] [PATCH 1/1] configure: robustify big/little check

2014-05-28 Thread Cornelia Huck
On Wed, 28 May 2014 09:52:38 +0100 Peter Maydell wrote: > On 28 May 2014 09:46, Cornelia Huck wrote: > > The check for big or little endianness relies on grep reporting > > match/non-match on the generated binary. If the user specified > > --binary-files=without-match in their GREP_OPTIONS, this

Re: [Qemu-devel] [PATCH 1/1] configure: robustify big/little check

2014-05-28 Thread Peter Maydell
On 28 May 2014 09:46, Cornelia Huck wrote: > The check for big or little endianness relies on grep reporting > match/non-match on the generated binary. If the user specified > --binary-files=without-match in their GREP_OPTIONS, this will fail. > Let's just explicitly specify --binary-files=binary,

[Qemu-devel] [PATCH 1/1] configure: robustify big/little check

2014-05-28 Thread Cornelia Huck
The check for big or little endianness relies on grep reporting match/non-match on the generated binary. If the user specified --binary-files=without-match in their GREP_OPTIONS, this will fail. Let's just explicitly specify --binary-files=binary, which will override any user settings and do what w