From: Daniel P. Berrangé Date: Thu, 22 Feb 2018 12:47:59 +0000 (+0000) Subject: rpm: don't enable fuse on RHEL-6 X-Git-Tag: v4.1.0-rc1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55901229373bea1a787f525b816db4301ea3a531;p=thirdparty%2Flibvirt.git rpm: don't enable fuse on RHEL-6 Fuse was recently enabled whereever LXC is enabled: commit 34783a9e6b9c3d8850db878fc323c1ff40703ea6 Author: Jiri Denemark Date: Fri Feb 9 13:42:50 2018 +0100 spec: Enable fuse only if LXC is enabled Unfortunately the version of Fuse in RHEL-6 is too old for libvirt's needs, but we still have LXC enabled there. Signed-off-by: Daniel P. Berrangé --- diff --git a/libvirt.spec.in b/libvirt.spec.in index e1e902c5e4..1eca4e39d4 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -167,7 +167,7 @@ %endif # fuse is used to provide virtualized /proc for LXC -%if %{with_lxc} +%if %{with_lxc} && 0%{?rhel} != 6 %define with_fuse 0%{!?_without_fuse:1} %endif