diff options
author | Kusanagi Kouichi <slash@ac.auone-net.jp> | 2012-04-22 19:16:05 +0900 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-04-24 09:50:31 -0500 |
commit | d10f9056bacf7991fd6a5f63ac2e0190e84ea3a7 (patch) | |
tree | 0eec0fd89c885e1415c6a5a0a464cc6e8edc9df5 /configure | |
parent | ac3107340fbb9422ea63ee5d6729775965e121fd (diff) | |
download | qemu-d10f9056bacf7991fd6a5f63ac2e0190e84ea3a7.tar.gz qemu-d10f9056bacf7991fd6a5f63ac2e0190e84ea3a7.tar.bz2 qemu-d10f9056bacf7991fd6a5f63ac2e0190e84ea3a7.zip |
configure: Virtfs doesn't require libcap.
Only proxy helper does.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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" |