[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v2 1/1] ./configure: add option for disabling Vi
From: |
Peter Maydell |
Subject: |
Re: [Qemu-devel] [PATCH v2 1/1] ./configure: add option for disabling VirtFS |
Date: |
Fri, 10 Feb 2012 02:13:21 +0000 |
On 10 February 2012 02:06, Meador Inge <address@hidden> wrote:
> + if test "$virtfs" != no ; then
> + if [ "$cap" = "yes" -a "$linux" = "yes" -a "$attr" = "yes" ] ; then
The test -a operator is deprecated by POSIX; use
test "$cap" = yes && test "$linux" = yes && test "$attr" = yes
instead.
-- PMM