diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2024-02-07 16:54:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-07 16:54:14 +0100 |
commit | a30d4612f583d85637501b58093f6ab68d4c7e57 (patch) | |
tree | 0f7b4bd8534c98ce868f704768f63dea4dd56af2 /var | |
parent | e32009a7e330007dc248a7f9cbd7d3ff04695614 (diff) | |
download | spack-a30d4612f583d85637501b58093f6ab68d4c7e57.tar.gz spack-a30d4612f583d85637501b58093f6ab68d4c7e57.tar.bz2 spack-a30d4612f583d85637501b58093f6ab68d4c7e57.tar.xz spack-a30d4612f583d85637501b58093f6ab68d4c7e57.zip |
oce: fix self-referential dependencies (#42540)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/oce/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/oce/package.py b/var/spack/repos/builtin/packages/oce/package.py index c945bae6f3..ecc72911ae 100644 --- a/var/spack/repos/builtin/packages/oce/package.py +++ b/var/spack/repos/builtin/packages/oce/package.py @@ -35,7 +35,7 @@ class Oce(Package): with when("+tbb"): depends_on("tbb") - depends_on("intel-tbb@:2020 build_system=makefile", when="^intel-tbb") + depends_on("intel-tbb@:2020 build_system=makefile", when="^[virtuals=tbb] intel-tbb") conflicts("^intel-oneapi-tbb@2021.1:") # There is a bug in OCE which appears with Clang (version?) or GCC 6.0 |