depend on elf provider in place of specifically libelf (#23524)

This commit is contained in:
eugeneswalker 2021-05-10 11:04:18 -07:00 committed by GitHub
parent e219d89d33
commit a5422f8015
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@ class Tau(Package):
depends_on('likwid', when='+likwid') depends_on('likwid', when='+likwid')
depends_on('papi', when='+papi') depends_on('papi', when='+papi')
depends_on('libdwarf', when='+libdwarf') depends_on('libdwarf', when='+libdwarf')
depends_on('libelf', when='+libdwarf') depends_on('elf', when='+libdwarf')
# TAU requires the ELF header support, libiberty and demangle. # TAU requires the ELF header support, libiberty and demangle.
depends_on('binutils@:2.33.1+libiberty+headers+plugins', when='+binutils') depends_on('binutils@:2.33.1+libiberty+headers+plugins', when='+binutils')
depends_on('python@2.7:', when='+python') depends_on('python@2.7:', when='+python')