From: Peter Krempa Date: Fri, 27 Jan 2017 09:37:56 +0000 (+0100) Subject: configure: Fix copy-paste error in vstorage backend check X-Git-Tag: CVE-2017-2635~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7ae7ca9d4d94eaa67639dda200c711bcc46bb0a;p=thirdparty%2Flibvirt.git 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. --- 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