[libvirt] [PATCH 1/2] configure: Fix copy-paste error in vstorage backend check

Peter Krempa pkrempa at redhat.com
Fri Jan 27 09:45:06 UTC 2017


The 'fs' backend m4 code was copied, but one of the condition were not
changed which resulted into:

configure:    Gluster: yes
configure:        ZFS: yes
configure: Virtuozzo storage: check

Make the code turn on the virtuozzo driver automatically if the tools
are found.
---
 m4/virt-storage-vstorage.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/m4/virt-storage-vstorage.m4 b/m4/virt-storage-vstorage.m4
index 8a926c80f..e3b3bb40f 100644
--- a/m4/virt-storage-vstorage.m4
+++ b/m4/virt-storage-vstorage.m4
@@ -49,7 +49,7 @@ AC_DEFUN([LIBVIRT_STORAGE_CHECK_VSTORAGE], [
         with_storage_vstorage=no
       fi

-      if test "$with_storage_fs" = "check" ; then
+      if test "$with_storage_vstorage" = "check" ; then
         with_storage_vstorage=yes
       fi
     fi
-- 
2.11.0




More information about the libvir-list mailing list