diff options
author | Kevin Huck <khuck@cs.uoregon.edu> | 2020-05-22 19:40:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 19:40:28 -0700 |
commit | bc145b2b3f87da8276e4c2e0665e9830de3d0322 (patch) | |
tree | 705a12f64ee19ec5aef8fe92966f0135ba469b42 | |
parent | 5108fe314b92409027c2821698fabb62c0ec3b5d (diff) | |
download | spack-bc145b2b3f87da8276e4c2e0665e9830de3d0322.tar.gz spack-bc145b2b3f87da8276e4c2e0665e9830de3d0322.tar.bz2 spack-bc145b2b3f87da8276e4c2e0665e9830de3d0322.tar.xz spack-bc145b2b3f87da8276e4c2e0665e9830de3d0322.zip |
TAU: remove ~nls constraint on binutils dependency
TAU does not require ~nls.
-rw-r--r-- | var/spack/repos/builtin/packages/tau/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/tau/package.py b/var/spack/repos/builtin/packages/tau/package.py index 132bcb7e3d..5a4d704c43 100644 --- a/var/spack/repos/builtin/packages/tau/package.py +++ b/var/spack/repos/builtin/packages/tau/package.py @@ -89,7 +89,7 @@ class Tau(Package): depends_on('libdwarf', when='+libdwarf') depends_on('libelf', when='+libdwarf') # TAU requires the ELF header support, libiberty and demangle. - depends_on('binutils@:2.33.1+libiberty+headers~nls', when='+binutils') + depends_on('binutils@:2.33.1+libiberty+headers', when='+binutils') depends_on('python@2.7:', when='+python') depends_on('libunwind', when='+libunwind') depends_on('mpi', when='+mpi', type=('build', 'run', 'link')) |