Skip to content

Commit

Permalink
Merge pull request #56000 from cbodley/wip-64678
Browse files Browse the repository at this point in the history
rpm: disable system_qat for non-x86_64 arch

Reviewed-by: Kefu Chai <tchaikov@gmail.com>
  • Loading branch information
cbodley committed Mar 6, 2024
2 parents ea9a568 + 25ce484 commit 28d5612
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ceph.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,14 @@
# this is tracked in https://bugzilla.redhat.com/2152265
%bcond_with system_arrow
%endif
# qat only supported for intel devices
%ifarch x86_64
%if 0%{?fedora} || 0%{?rhel} >= 9
%bcond_without system_qat
%else
%else # not fedora/rhel
%bcond_with system_qat
%endif
%else # not x86_64
%bcond_with system_qat
%endif
%if 0%{?fedora} || 0%{?suse_version} || 0%{?rhel} >= 8 || 0%{?openEuler}
Expand Down

0 comments on commit 28d5612

Please sign in to comment.