From c786eb46bb3e79574db1a6f08f7718b7a872b3ad Mon Sep 17 00:00:00 2001 From: Tim Haines Date: Thu, 20 Aug 2020 01:36:02 -0500 Subject: dyninst: use elfutils for all versions (#18063) --- var/spack/repos/builtin/packages/dyninst/package.py | 12 ++++++------ 1 file 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:') -- cgit v1.2.3-60-g2f50