From a7ae7ca9d4d94eaa67639dda200c711bcc46bb0a Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Fri, 27 Jan 2017 10:37:56 +0100 Subject: [PATCH] configure: Fix copy-paste error in vstorage backend check 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 8a926c80f1..e3b3bb40f0 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