diff options
author | Michael Kuhn <suraia@ikkoku.de> | 2018-09-15 02:21:05 +0200 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-09-14 17:21:05 -0700 |
commit | c2f6c98ed994c79464e50afd7f940c2cfa3d1109 (patch) | |
tree | 7093e4f224a734f1489aaa7e9c4e0f1366336d99 | |
parent | b09ece58f6eff34d024bc95ea3653a3d96cedf32 (diff) | |
download | spack-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.py | 1 |
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') |