diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2021-03-16 08:34:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 08:34:41 +0100 |
commit | 8ffeb96c7755b45730b55a6968420a75aaa00853 (patch) | |
tree | 6434a86422849155baffddb21e8155f256b744cc /var | |
parent | d7f1ff68fba047380b7fc81319c369eebf6b1b81 (diff) | |
download | spack-8ffeb96c7755b45730b55a6968420a75aaa00853.tar.gz spack-8ffeb96c7755b45730b55a6968420a75aaa00853.tar.bz2 spack-8ffeb96c7755b45730b55a6968420a75aaa00853.tar.xz spack-8ffeb96c7755b45730b55a6968420a75aaa00853.zip |
hwloc: add dependency on ncurses (#22300)
Co-authored-by: Michal Sudwoj <msudwoj@student.ethz.ch>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/hwloc/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hwloc/package.py b/var/spack/repos/builtin/packages/hwloc/package.py index 4b6e998c42..fcfb3ac64c 100644 --- a/var/spack/repos/builtin/packages/hwloc/package.py +++ b/var/spack/repos/builtin/packages/hwloc/package.py @@ -91,6 +91,10 @@ class Hwloc(AutotoolsPackage): depends_on('cairo', when='+cairo') depends_on('numactl', when='@:1.11.11 platform=linux') + # see https://github.com/open-mpi/hwloc/pull/417 + depends_on('ncurses ~termlib', when='@:2.2') + depends_on('ncurses') + # When mpi=openmpi, this introduces an unresolvable dependency. # See https://github.com/spack/spack/issues/15836 for details depends_on('mpi', when='+netloc') |