diff options
author | vvolkl <valentin.volkl@cern.ch> | 2020-07-15 05:07:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 22:07:39 -0500 |
commit | c281eaf69f6cbe368e06b50065a3b1f043128375 (patch) | |
tree | 4da1bcffe9e768195f70096f168065a7697ce0f6 /var | |
parent | 2110b98829e1925d49184a5c69885648230b5d72 (diff) | |
download | spack-c281eaf69f6cbe368e06b50065a3b1f043128375.tar.gz spack-c281eaf69f6cbe368e06b50065a3b1f043128375.tar.bz2 spack-c281eaf69f6cbe368e06b50065a3b1f043128375.tar.xz spack-c281eaf69f6cbe368e06b50065a3b1f043128375.zip |
[acts] remove false dependency (#17511)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/acts/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/acts/package.py b/var/spack/repos/builtin/packages/acts/package.py index 849c326b18..63b011791f 100644 --- a/var/spack/repos/builtin/packages/acts/package.py +++ b/var/spack/repos/builtin/packages/acts/package.py @@ -92,8 +92,8 @@ class Acts(CMakePackage): depends_on('boost @1.62:1.69.99 +program_options +test', when='@:0.10.3') depends_on('boost @1.69: +filesystem +program_options +test', when='@0.10.4:') depends_on('cmake @3.11:', type='build') - depends_on('dd4hep @1.10: +xercesc', when='+dd4hep') - depends_on('dd4hep @1.10: +geant4 +xercesc', when='+dd4hep +geant4') + depends_on('dd4hep @1.10:', when='+dd4hep') + depends_on('dd4hep @1.10: +geant4', when='+dd4hep +geant4') depends_on('eigen @3.2.9:', type='build') depends_on('geant4', when='+geant4') depends_on('hepmc3@3.1:', when='+hepmc3') |