[libvirt] [PATCH] Fix ./configure: line 27875: [: missing `]'

Matthias Bolte matthias.bolte at googlemail.com
Wed Mar 31 20:58:41 UTC 2010


2010/3/31 Eric Blake <eblake at redhat.com>:
> On 03/31/2010 02:35 PM, Matthias Bolte wrote:
>> Commit 7998714d60b997357bfea15d6f2d0f729fc8fb29 replaced '-a' with '&& test'
>> but this single '-a' needs to stay.
>> ---
>>  configure.ac |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/configure.ac b/configure.ac
>> index 3c3d7b3..fc87e19 100644
>> --- a/configure.ac
>> +++ b/configure.ac
>> @@ -240,7 +240,7 @@ AC_ARG_WITH([libvirtd],
>>  dnl
>>  dnl specific tests to setup DV devel environments with debug etc ...
>>  dnl
>> -if [[ "${LOGNAME}" = "veillard" && test "`pwd`" = "/u/veillard/libvirt" ]] ; then
>> +if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/libvirt" ]] ; then
>
> NAK.  Instead, we should rewrite this line to use test instead of [.
>
> if test "${LOGNAME}" = "veillard" && test"`pwd`" = "/u/veillar/libvirt"
> ; then
>

Here's v2 of the patch.

Matthias
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Fix-.-configure-line-27875-missing.diff
Type: text/x-diff
Size: 910 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20100331/a5486395/attachment-0001.bin>


More information about the libvir-list mailing list