On 10 February 2012 02:06, Meador Inge <mead...@codesourcery.com> 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

Reply via email to