diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2023-01-02 10:56:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 17:56:34 +0100 |
commit | f83d47442dade012b1019840181b8dd459fd8edd (patch) | |
tree | 0e47078c144caa8e59288a98b4305b7e5febf5a2 | |
parent | 08aafe180b99ffc574303a128d1494ad8e2005e3 (diff) | |
download | spack-f83d47442dade012b1019840181b8dd459fd8edd.tar.gz spack-f83d47442dade012b1019840181b8dd459fd8edd.tar.bz2 spack-f83d47442dade012b1019840181b8dd459fd8edd.tar.xz spack-f83d47442dade012b1019840181b8dd459fd8edd.zip |
dd4hep: depends_on root +x +opengl when +utilityapps (#34765)
UtilityApps builds teveDisplay and fails when ROOT has no ROOT::Gui and ROOT::Eve targets.
-rw-r--r-- | var/spack/repos/builtin/packages/dd4hep/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/dd4hep/package.py b/var/spack/repos/builtin/packages/dd4hep/package.py index aa6d4a4f50..771815514e 100644 --- a/var/spack/repos/builtin/packages/dd4hep/package.py +++ b/var/spack/repos/builtin/packages/dd4hep/package.py @@ -140,6 +140,7 @@ class Dd4hep(CMakePackage): depends_on("boost +system +filesystem", when="%gcc@:7") depends_on("root @6.08: +gdml +math +python") depends_on("root @6.08: +gdml +math +python +x +opengl", when="+ddeve") + depends_on("root @6.08: +gdml +math +python +x +opengl", when="+utilityapps") extends("python") depends_on("xerces-c", when="+xercesc") |