qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 07/12] configure: fix TPM logic


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH 07/12] configure: fix TPM logic
Date: Mon, 15 Apr 2013 17:09:27 +0100

On 15 April 2013 14:19, Paolo Bonzini <address@hidden> wrote:
> +if test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64; then

test -o is deprecated by POSIX; better to use
  if test ... && ( test ... || test ... ); then

in new code.

thanks
-- PMM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]