summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kuhn <suraia@ikkoku.de>2018-09-15 02:21:05 +0200
committerTodd Gamblin <tgamblin@llnl.gov>2018-09-14 17:21:05 -0700
commitc2f6c98ed994c79464e50afd7f940c2cfa3d1109 (patch)
tree7093e4f224a734f1489aaa7e9c4e0f1366336d99
parentb09ece58f6eff34d024bc95ea3653a3d96cedf32 (diff)
downloadspack-c2f6c98ed994c79464e50afd7f940c2cfa3d1109.tar.gz
spack-c2f6c98ed994c79464e50afd7f940c2cfa3d1109.tar.bz2
spack-c2f6c98ed994c79464e50afd7f940c2cfa3d1109.tar.xz
spack-c2f6c98ed994c79464e50afd7f940c2cfa3d1109.zip
rdma-core: Fix missing pkg-config dependency (#9195)
rdma-core requires pkg-config, otherwise libnl can not be found.
-rw-r--r--var/spack/repos/builtin/packages/rdma-core/package.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/rdma-core/package.py b/var/spack/repos/builtin/packages/rdma-core/package.py
index 6548b0670c..5448a969ad 100644
--- a/var/spack/repos/builtin/packages/rdma-core/package.py
+++ b/var/spack/repos/builtin/packages/rdma-core/package.py
@@ -34,6 +34,7 @@ class RdmaCore(CMakePackage):
version('17.1', '1d19caf554f815990af5c21356ac4d3a')
version('13', '6b072b4307d1cfe45eba4373f68e2927')
+ depends_on('pkgconfig', type='build')
depends_on('libnl')
conflicts('platform=darwin', msg='rdma-core requires FreeBSD or Linux')