diff options
author | Christoph Junghans <junghans@lanl.gov> | 2021-07-09 19:05:30 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-10 01:05:30 +0000 |
commit | 556975564cd49d81b50a120a85eb3b91b60c3bb8 (patch) | |
tree | a451490f323784a2b620b6f659d1739005f6e3bf | |
parent | d14520d6d86d2230be337a566e96a7951676d179 (diff) | |
download | spack-556975564cd49d81b50a120a85eb3b91b60c3bb8.tar.gz spack-556975564cd49d81b50a120a85eb3b91b60c3bb8.tar.bz2 spack-556975564cd49d81b50a120a85eb3b91b60c3bb8.tar.xz spack-556975564cd49d81b50a120a85eb3b91b60c3bb8.zip |
votca-tools: fix build with newer gcc/glibc (#24815)
-rw-r--r-- | var/spack/repos/builtin/packages/votca-tools/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/votca-tools/package.py b/var/spack/repos/builtin/packages/votca-tools/package.py index 21150834a3..4bfc91b707 100644 --- a/var/spack/repos/builtin/packages/votca-tools/package.py +++ b/var/spack/repos/builtin/packages/votca-tools/package.py @@ -35,6 +35,8 @@ class VotcaTools(CMakePackage): # https://github.com/votca/tools/pull/229, fix mkl in exported target patch("https://github.com/votca/tools/pull/229.patch", sha256="250d0b679e5d3104e3c8d6adf99751b71386c7ed4cbdae1c75408717ef3f401f", when="@1.6:1.6.0+mkl") + # https://github.com/votca/tools/pull/361, fix build with newer glibc/gcc, fixed in stable and 2021.1 + patch("https://github.com/votca/tools/commit/6bb7e35ba7d1a31247eafb323be2777ec0439cfe.patch", sha256="3c9fa5ac9cf45c54ac475bcb22350793efaccd6b5154e3d30c24b8aa754fe47b", when="@2021") variant('mkl', default=False, description='Build with MKL support') conflicts('+mkl', when='@1.4:1.5.9999') |