]> git.proxmox.com Git - mirror_qemu.git/commitdiff
Revert "configure: Virtfs doesn't require libcap."
authorAnthony Liguori <aliguori@us.ibm.com>
Wed, 25 Apr 2012 19:19:05 +0000 (14:19 -0500)
committerAnthony Liguori <aliguori@us.ibm.com>
Thu, 26 Apr 2012 18:14:58 +0000 (13:14 -0500)
This reverts commit d10f9056bacf7991fd6a5f63ac2e0190e84ea3a7 due to a build
breakage.

See http://spunk.home.kraxel.org/bb/builders/ubuntu-default/builds/52

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
configure

index dd09f1a18fd452382156316d6382d9f4598bb8d8..15bbc735c4800ba49a78f37efb9cfa828a9eb537 100755 (executable)
--- a/configure
+++ b/configure
@@ -2898,11 +2898,9 @@ tools=
 if test "$softmmu" = yes ; then
   tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
   if test "$virtfs" != no ; then
-      if test "$linux" = yes && test "$attr" = yes ; then
+      if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
          virtfs=yes
-         if test "$cap" = yes ; then
-             tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
-         fi
+         tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
       else
          if test "$virtfs" = yes; then
              feature_not_found "virtfs"