diff options
author | Tim Haines <thaines.astro@gmail.com> | 2020-08-20 01:36:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 08:36:02 +0200 |
commit | c786eb46bb3e79574db1a6f08f7718b7a872b3ad (patch) | |
tree | 19ce523f7782a7f3e532965c22d6feb1549df6d4 /var | |
parent | 306f3a123238239c7c30b6e6a19273aed3e0e0f5 (diff) | |
download | spack-c786eb46bb3e79574db1a6f08f7718b7a872b3ad.tar.gz spack-c786eb46bb3e79574db1a6f08f7718b7a872b3ad.tar.bz2 spack-c786eb46bb3e79574db1a6f08f7718b7a872b3ad.tar.xz spack-c786eb46bb3e79574db1a6f08f7718b7a872b3ad.zip |
dyninst: use elfutils for all versions (#18063)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/dyninst/package.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/dyninst/package.py b/var/spack/repos/builtin/packages/dyninst/package.py index b6d1fa540f..5c35117605 100644 --- a/var/spack/repos/builtin/packages/dyninst/package.py +++ b/var/spack/repos/builtin/packages/dyninst/package.py @@ -41,13 +41,13 @@ class Dyninst(CMakePackage): depends_on('boost@1.61.0:1.69.99' + boost_libs, when='@:10.0.99') depends_on('libiberty+pic') - # Dyninst uses elf@1 (elfutils) starting with 9.3.0, and used - # elf@0 (libelf) before that. - depends_on('elf@1', type='link', when='@9.3.0:') - depends_on('elf@0', type='link', when='@:9.2.99') + # Dyninst uses elfutils starting with 9.3.0, and used libelf + # before that. + depends_on('elfutils', type='link', when='@9.3.0:') + depends_on('libelf', type='link', when='@:9.2.99') - # Dyninst uses libdw from elfutils (same elf@1) starting with - # 10.x, and used libdwarf before that. + # Dyninst uses libdw from elfutils starting with 10.0, and used + # libdwarf before that. depends_on('libdwarf', when='@:9.99.99') depends_on('tbb@2018.6:', when='@10.0.0:') |