mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-16 14:41:55 -06:00
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>
This commit is contained in:
parent
ac3107340f
commit
d10f9056ba
1 changed files with 4 additions and 2 deletions
6
configure
vendored
6
configure
vendored
|
@ -2889,9 +2889,11 @@ tools=
|
||||||
if test "$softmmu" = yes ; then
|
if test "$softmmu" = yes ; then
|
||||||
tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
|
tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
|
||||||
if test "$virtfs" != no ; then
|
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
|
virtfs=yes
|
||||||
tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
|
if test "$cap" = yes ; then
|
||||||
|
tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
if test "$virtfs" = yes; then
|
if test "$virtfs" = yes; then
|
||||||
feature_not_found "virtfs"
|
feature_not_found "virtfs"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue