diff options
author | Andreas Färber <afaerber@suse.de> | 2012-05-01 01:12:03 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-05-08 11:15:18 -0500 |
commit | 175003702a4d9ac6dd58413c348efefd309b778c (patch) | |
tree | 4d00985c5139ea0713e8cb7f7ce2ff6a2587b423 | |
parent | aabfd88d5e1ec0878aa70076c3de1859614671f4 (diff) | |
download | qemu-175003702a4d9ac6dd58413c348efefd309b778c.tar.gz qemu-175003702a4d9ac6dd58413c348efefd309b778c.tar.bz2 qemu-175003702a4d9ac6dd58413c348efefd309b778c.zip |
configure: Assure printing "yes" or "no" for VirtFS support
When auto-detecting VirtFS support, virtfs="". Set it to "no" after
checking whether it was explicitly requested through --enable-virtfs.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Cc: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2902,6 +2902,7 @@ if test "$softmmu" = yes ; then if test "$virtfs" = yes; then feature_not_found "virtfs" fi + virtfs=no fi fi if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then |