cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
9ae3a8
From af94bc39b8a4ce40083d15f660e147fb6a62b404 Mon Sep 17 00:00:00 2001
9ae3a8
From: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Date: Thu, 20 Mar 2014 10:59:23 +0100
9ae3a8
Subject: [PATCH] configure: Fix bugs preventing Ceph inclusion
9ae3a8
9ae3a8
RH-Author: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Message-id: <1395313163-1002-1-git-send-email-kwolf@redhat.com>
9ae3a8
Patchwork-id: 58164
9ae3a8
O-Subject: [RHEL-7.0 qemu-kvm PATCH] configure: Fix bugs preventing Ceph inclusion
9ae3a8
Bugzilla: 1078809
9ae3a8
RH-Acked-by: Fam Zheng <famz@redhat.com>
9ae3a8
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
RH-Acked-by: Ademar de Souza Reis Jr. <areis@redhat.com>
9ae3a8
9ae3a8
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1078809
9ae3a8
Brew: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=7230126
9ae3a8
Upstream status: Fix for downstream-only code
9ae3a8
9ae3a8
CONFIG_CEPH_SUPPORT=y never really ended up being set, neither by
9ae3a8
default nor with an explicit --enable-ceph-support.
9ae3a8
9ae3a8
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
---
9ae3a8
 configure | 6 +++---
9ae3a8
 1 file changed, 3 insertions(+), 3 deletions(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 configure |    6 +++---
9ae3a8
 1 files changed, 3 insertions(+), 3 deletions(-)
9ae3a8
9ae3a8
diff --git a/configure b/configure
9ae3a8
index 3f68220..0ac437c 100755
9ae3a8
--- a/configure
9ae3a8
+++ b/configure
9ae3a8
@@ -952,9 +952,9 @@ for opt do
9ae3a8
   ;;
9ae3a8
   --enable-live-block-migration) live_block_migration="yes"
9ae3a8
   ;;
9ae3a8
-  --disable-ceph-support) ceph_support=="no"
9ae3a8
+  --disable-ceph-support) ceph_support="no"
9ae3a8
   ;;
9ae3a8
-  --enable-ceph-support) ceph_support=="yes"
9ae3a8
+  --enable-ceph-support) ceph_support="yes"
9ae3a8
   ;;
9ae3a8
   --enable-vhdx) vhdx="yes"
9ae3a8
   ;;
9ae3a8
@@ -4039,7 +4039,7 @@ if test "$live_block_migration" = "yes" ; then
9ae3a8
   echo "CONFIG_LIVE_BLOCK_MIGRATION=y" >> $config_host_mak
9ae3a8
 fi
9ae3a8
 
9ae3a8
-if test "ceph_support" = "yes"; then
9ae3a8
+if test "$ceph_support" = "yes"; then
9ae3a8
   echo "CONFIG_CEPH_SUPPORT=y" >> $config_host_mak
9ae3a8
 fi
9ae3a8
 
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8