From 81e9e7cf3be95be7a9144f04bf628d78d9b50bfb Mon Sep 17 00:00:00 2001 From: Wen Congyang Date: Tue, 22 May 2012 16:07:02 +0800 Subject: [PATCH] fix building error on non fedora system We forget to define with_storage_rbd if the system is not fedora, or the version is less than 16. --- libvirt.spec.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libvirt.spec.in b/libvirt.spec.in index 9435f9c365..06690739cb 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -77,6 +77,8 @@ %define with_storage_mpath 0%{!?_without_storage_mpath:%{server_drivers}} %if 0%{?fedora} >= 16 %define with_storage_rbd 0%{!?_without_storage_rbd:%{server_drivers}} +%else +%define with_storage_rbd 0 %endif %define with_numactl 0%{!?_without_numactl:%{server_drivers}} %define with_selinux 0%{!?_without_selinux:%{server_drivers}}