diff options
author | Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> | 2024-10-03 02:57:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-03 02:57:11 +0200 |
commit | 12fd940e8111631ca33f0d06464a3df5c95eba24 (patch) | |
tree | 9ab7539a708a98793098193b9eb69521c34520e9 /var | |
parent | e193320ebbe11c87f835fd85b16b4ca0b378a29a (diff) | |
download | spack-12fd940e8111631ca33f0d06464a3df5c95eba24.tar.gz spack-12fd940e8111631ca33f0d06464a3df5c95eba24.tar.bz2 spack-12fd940e8111631ca33f0d06464a3df5c95eba24.tar.xz spack-12fd940e8111631ca33f0d06464a3df5c95eba24.zip |
edm4hep: fix concretization by adding a when inside the conditional (#46710)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/edm4hep/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/edm4hep/package.py b/var/spack/repos/builtin/packages/edm4hep/package.py index ddf72870eb..838c11b101 100644 --- a/var/spack/repos/builtin/packages/edm4hep/package.py +++ b/var/spack/repos/builtin/packages/edm4hep/package.py @@ -52,7 +52,7 @@ class Edm4hep(CMakePackage): depends_on("cxx", type="build") # generated - _cxxstd_values = (conditional("17", when="@:0.99.0"), conditional("20")) + _cxxstd_values = (conditional("17", when="@:0.99.0"), conditional("20", when="@0.10:")) variant( "cxxstd", default="20", |