diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2024-02-05 15:17:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 15:17:46 +0100 |
commit | 928ee7569ce1d90a3fc274f7f89015bc5c070615 (patch) | |
tree | 16e7a26dd1eae8c0d3e7903fdc375f00d6a382ed | |
parent | 81909038213573f1a475986962e9699970b87129 (diff) | |
download | spack-928ee7569ce1d90a3fc274f7f89015bc5c070615.tar.gz spack-928ee7569ce1d90a3fc274f7f89015bc5c070615.tar.bz2 spack-928ee7569ce1d90a3fc274f7f89015bc5c070615.tar.xz spack-928ee7569ce1d90a3fc274f7f89015bc5c070615.zip |
ecp-data-vis-sdk: remove self-referential dependencies (#42484)
This shouldn't be an issue, but express this limitation
with a conflict.
-rw-r--r-- | var/spack/repos/builtin/packages/ecp-data-vis-sdk/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/ecp-data-vis-sdk/package.py b/var/spack/repos/builtin/packages/ecp-data-vis-sdk/package.py index d33cd410b0..43214a4823 100644 --- a/var/spack/repos/builtin/packages/ecp-data-vis-sdk/package.py +++ b/var/spack/repos/builtin/packages/ecp-data-vis-sdk/package.py @@ -187,7 +187,7 @@ class EcpDataVisSdk(BundlePackage, CudaPackage, ROCmPackage): ) # TODO: When Ascent is updated to use VTK-m >= 1.8 move examples to # the main spec. - depends_on("vtk-m+examples", when="+vtkm ^vtk-m@1.8:") + conflicts("^vtk-m~examples", when="+vtkm ^vtk-m@1.8:") depends_on("vtk-m+openmp", when="~rocm+vtkm") depends_on("vtk-m~openmp", when="+rocm+vtkm") |