From: Kusanagi Kouichi Date: Sun, 22 Apr 2012 10:16:05 +0000 (+0900) Subject: configure: Virtfs doesn't require libcap. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d10f9056bacf7991fd6a5f63ac2e0190e84ea3a7;p=qemu.git configure: Virtfs doesn't require libcap. Only proxy helper does. Reviewed-by: Paolo Bonzini Signed-off-by: Kusanagi Kouichi Signed-off-by: Anthony Liguori --- diff --git a/configure b/configure index 2dffab8d93..b8baf4f702 100755 --- a/configure +++ b/configure @@ -2889,9 +2889,11 @@ tools= if test "$softmmu" = yes ; then tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" if test "$virtfs" != no ; then - if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then + if test "$linux" = yes && test "$attr" = yes ; then virtfs=yes - tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)" + if test "$cap" = yes ; then + tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)" + fi else if test "$virtfs" = yes; then feature_not_found "virtfs"