diff options
author | James Shen <46590537+JamesJieranShen@users.noreply.github.com> | 2024-04-12 18:52:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 18:52:22 -0400 |
commit | acfb2b9270de4e663ad2dde27d6cc7a3f6e9e817 (patch) | |
tree | fc069641049270089dedbbc6c2924abc2a357955 | |
parent | d92a2c31fbc23d09347539af8b46956737861312 (diff) | |
download | spack-acfb2b9270de4e663ad2dde27d6cc7a3f6e9e817.tar.gz spack-acfb2b9270de4e663ad2dde27d6cc7a3f6e9e817.tar.bz2 spack-acfb2b9270de4e663ad2dde27d6cc7a3f6e9e817.tar.xz spack-acfb2b9270de4e663ad2dde27d6cc7a3f6e9e817.zip |
Geant4: extend patch to fix compile for 10.0-10.4 as well (#43640)
-rw-r--r-- | var/spack/repos/builtin/packages/geant4/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/geant4/package.py b/var/spack/repos/builtin/packages/geant4/package.py index 2acab80fa2..9a399e0900 100644 --- a/var/spack/repos/builtin/packages/geant4/package.py +++ b/var/spack/repos/builtin/packages/geant4/package.py @@ -162,7 +162,7 @@ class Geant4(CMakePackage): patch("CLHEP-10.03.03.patch", level=1, when="@10.3") # Build failure on clang 15, ubuntu 22: see Geant4 problem report #2444 # fixed by ascii-V10-07-03 - patch("geant4-10.6.patch", level=1, when="@10.5:10.6") + patch("geant4-10.6.patch", level=1, when="@10.0:10.6") # These patches can be applied independent of the cxxstd value? patch("cxx17.patch", when="@10.3 cxxstd=17") patch("cxx17_geant4_10_0.patch", level=1, when="@10.4.0 cxxstd=17") |