rdma-core: Fix missing pkg-config dependency (#9195)

rdma-core requires pkg-config, otherwise libnl can not be found.
This commit is contained in:
Michael Kuhn 2018-09-15 02:21:05 +02:00 committed by Todd Gamblin
parent b09ece58f6
commit c2f6c98ed9

View file

@ -34,6 +34,7 @@ class RdmaCore(CMakePackage):
version('17.1', '1d19caf554f815990af5c21356ac4d3a') version('17.1', '1d19caf554f815990af5c21356ac4d3a')
version('13', '6b072b4307d1cfe45eba4373f68e2927') version('13', '6b072b4307d1cfe45eba4373f68e2927')
depends_on('pkgconfig', type='build')
depends_on('libnl') depends_on('libnl')
conflicts('platform=darwin', msg='rdma-core requires FreeBSD or Linux') conflicts('platform=darwin', msg='rdma-core requires FreeBSD or Linux')