diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2022-12-29 02:13:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-29 09:13:28 +0100 |
commit | 18438c395d7487a361748ad48609858c2725f1ea (patch) | |
tree | 91c08d5a8b055db8a10d79f98b6c1f0f514f6e44 /var | |
parent | 28a30bcea656081ba988ec8500e6a70814ea8faa (diff) | |
download | spack-18438c395d7487a361748ad48609858c2725f1ea.tar.gz spack-18438c395d7487a361748ad48609858c2725f1ea.tar.bz2 spack-18438c395d7487a361748ad48609858c2725f1ea.tar.xz spack-18438c395d7487a361748ad48609858c2725f1ea.zip |
dd4hep: depends_on virtual tbb instead of intel-tbb (#34704)
Recent changes to dd4hep remove the explicit dependency
on an older version of intel-tbb. This makes this explicit
in the spack package.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/dd4hep/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/dd4hep/package.py b/var/spack/repos/builtin/packages/dd4hep/package.py index 866bc34b77..aa6d4a4f50 100644 --- a/var/spack/repos/builtin/packages/dd4hep/package.py +++ b/var/spack/repos/builtin/packages/dd4hep/package.py @@ -146,7 +146,8 @@ class Dd4hep(CMakePackage): depends_on("geant4@10.2.2:", when="+ddg4") depends_on("assimp@5.0.2:", when="+ddcad") depends_on("hepmc3", when="+hepmc3") - depends_on("intel-tbb", when="+tbb") + depends_on("tbb", when="+tbb") + depends_on("intel-tbb@:2020.3", when="+tbb @:1.23") depends_on("lcio", when="+lcio") depends_on("edm4hep", when="+edm4hep") depends_on("podio", when="+edm4hep") |