Skip to content

Commit

Permalink
Fix dependency on consistent_hash for non-RHEL distros
Browse files Browse the repository at this point in the history
This seems to be referring to the PyPi package python-consistent_hash,
which is named that way on SLE distributions.

Partial-Bug: #1488627
Change-Id: I4174a938e3fde2119f71497e41d8c749b662d37e
  • Loading branch information
dirkmueller committed Aug 27, 2015
1 parent a3ce867 commit 9546eeb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rpm/contrail/contrail.spec
Expand Up @@ -189,7 +189,11 @@ Requires: python-gevent >= 1.0
%if 0%{?rhel} <= 6
Requires: python-gevent
%endif
Requires: consistent_hash
%if 0%{?rhel}
Requires: consistent_hash
%else
Requires: python-consistent_hash
%endif
%if 0%{?rhel} <= 6
Requires: python-importlib
%endif
Expand Down

0 comments on commit 9546eeb

Please sign in to comment.