[libvirt PATCH] spec: Do not build qemu driver for Power on RHEL-9

Jiri Denemark posted 1 patch 3 years ago
Test syntax-check failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/220ec91cd70ee644bff1a9472d526149f6a72163.1619010540.git.jdenemar@redhat.com
libvirt.spec.in | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
[libvirt PATCH] spec: Do not build qemu driver for Power on RHEL-9
Posted by Jiri Denemark 3 years ago
https://bugzilla.redhat.com/show_bug.cgi?id=1946529

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
---
 libvirt.spec.in | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/libvirt.spec.in b/libvirt.spec.in
index f9af330186..be74964b7b 100644
--- a/libvirt.spec.in
+++ b/libvirt.spec.in
@@ -19,7 +19,11 @@
 
 %define arches_qemu_kvm         %{ix86} x86_64 %{power64} %{arm} aarch64 s390x
 %if 0%{?rhel}
-    %define arches_qemu_kvm     x86_64 %{power64} aarch64 s390x
+    %if 0%{?rhel} <= 8
+        %define arches_qemu_kvm     x86_64 %{power64} aarch64 s390x
+    %else
+        %define arches_qemu_kvm     x86_64 aarch64 s390x
+    %endif
 %endif
 
 %define arches_64bit            x86_64 %{power64} aarch64 s390x riscv64
-- 
2.31.1

Re: [libvirt PATCH] spec: Do not build qemu driver for Power on RHEL-9
Posted by Ján Tomko 3 years ago
On a Wednesday in 2021, Jiri Denemark wrote:
>https://bugzilla.redhat.com/show_bug.cgi?id=1946529
>
>Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
>---
> libvirt.spec.in | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>

Reviewed-by: Ján Tomko <jtomko@redhat.com>

Jano