From cfed8b9e55bcb76f74784b5f50d9a520580e73b9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Mon, 6 Oct 2025 10:29:17 +0100 Subject: [PATCH] Revert "rpm: disable sanlock when QEMU is disabled" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This reverts commit fefde6175884ff65241ddb3afae2d903df37e20e. The commit was mistaken, as sanlock is enabled for libxl too, however, the install of test_libvirt_sanlock.aug was missing when QEMU was disabled, causing the RPM build failure. Reviewed-by: Martin Kletzander Signed-off-by: Daniel P. Berrangé --- libvirt.spec.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libvirt.spec.in b/libvirt.spec.in index f96fcc9d7b..aff2707705 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -149,11 +149,11 @@ # Enable sanlock library for lock management with QEMU # Sanlock is available only on arches where kvm is available for RHEL %if 0%{?fedora} - %define with_sanlock 0%{!?_without_sanlock:%{with_qemu}} + %define with_sanlock 0%{!?_without_sanlock:1} %endif %if 0%{?rhel} %ifarch %{arches_qemu_kvm} - %define with_sanlock 0%{!?_without_sanlock:%{with_qemu}} + %define with_sanlock 0%{!?_without_sanlock:1} %endif %endif -- 2.47.3