diff options
author | eugeneswalker <38933153+eugeneswalker@users.noreply.github.com> | 2021-05-10 11:04:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 11:04:18 -0700 |
commit | a5422f8015b5065be21ec3f1f624dcbe66a04bcb (patch) | |
tree | d3733e58a740267a4e608507e919454566a7a020 | |
parent | e219d89d33696c36fa471a110d126411d71afaad (diff) | |
download | spack-a5422f8015b5065be21ec3f1f624dcbe66a04bcb.tar.gz spack-a5422f8015b5065be21ec3f1f624dcbe66a04bcb.tar.bz2 spack-a5422f8015b5065be21ec3f1f624dcbe66a04bcb.tar.xz spack-a5422f8015b5065be21ec3f1f624dcbe66a04bcb.zip |
depend on elf provider in place of specifically libelf (#23524)
-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 99fd0e6fd8..e86a0bf0e7 100644 --- a/var/spack/repos/builtin/packages/tau/package.py +++ b/var/spack/repos/builtin/packages/tau/package.py @@ -93,7 +93,7 @@ class Tau(Package): depends_on('likwid', when='+likwid') depends_on('papi', when='+papi') depends_on('libdwarf', when='+libdwarf') - depends_on('libelf', when='+libdwarf') + depends_on('elf', when='+libdwarf') # TAU requires the ELF header support, libiberty and demangle. depends_on('binutils@:2.33.1+libiberty+headers+plugins', when='+binutils') depends_on('python@2.7:', when='+python') |