diff options
author | Nathan Cutler <presnypreklad@gmail.com> | 2019-03-20 10:04:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-20 10:04:17 +0100 |
commit | d44db0d16bd1ef29b4733f5af8909d850ea4da09 (patch) | |
tree | deb27a882791fbfe9e9116ff73789290c6f9eba6 | |
parent | Merge pull request #27066 from tchaikov/wip-crimson-sharded-stop (diff) | |
parent | rpm: fix "rhel <= 7" conditional (diff) | |
download | ceph-d44db0d16bd1ef29b4733f5af8909d850ea4da09.tar.xz ceph-d44db0d16bd1ef29b4733f5af8909d850ea4da09.zip |
Merge pull request #27045 from smithfarm/wip-38810
rpm: fix "rhel <= 7" conditional
Reviewed-by: Kefu Chai <kchai@redhat.com>
Reviewed-by: Boris Ranto <branto@redhat.com>
Reviewed-by: Tim Serong <tserong@suse.com>
-rw-r--r-- | ceph.spec.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ceph.spec.in b/ceph.spec.in index 5844a5af3c5..07a1fcb8dc8 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -503,7 +503,7 @@ Requires: python3-scipy Requires: python2-scipy %endif %endif -%if 0%{?rhel} <= 7 +%if 0%{?rhel} == 7 Requires: numpy Requires: scipy %endif |