On 15 April 2013 14:19, Paolo Bonzini <[email protected]> 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
