diff options
author | Ye Luo <yeluo@anl.gov> | 2024-01-29 03:41:52 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-29 10:41:52 +0100 |
commit | 7242238a256e3986ba35071b1e85f9c4d1c43002 (patch) | |
tree | 1d72bd01f4098365f8d50ec6b3805065dca0215d | |
parent | ef26ee3f1fbcf81264c82b06c133cf34c41156f7 (diff) | |
download | spack-7242238a256e3986ba35071b1e85f9c4d1c43002.tar.gz spack-7242238a256e3986ba35071b1e85f9c4d1c43002.tar.bz2 spack-7242238a256e3986ba35071b1e85f9c4d1c43002.tar.xz spack-7242238a256e3986ba35071b1e85f9c4d1c43002.zip |
quantum_espresso: relax constrait to allow +openmp ^elpa~openmp (#42322)
-rw-r--r-- | var/spack/repos/builtin/packages/quantum-espresso/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/quantum-espresso/package.py b/var/spack/repos/builtin/packages/quantum-espresso/package.py index 7522227cff..55f7083e6c 100644 --- a/var/spack/repos/builtin/packages/quantum-espresso/package.py +++ b/var/spack/repos/builtin/packages/quantum-espresso/package.py @@ -130,7 +130,7 @@ class QuantumEspresso(CMakePackage, Package): # CMake builds only support elpa without openmp depends_on("elpa~openmp", when="build_system=cmake") with when("build_system=generic"): - depends_on("elpa+openmp", when="+openmp") + depends_on("elpa", when="+openmp") depends_on("elpa~openmp", when="~openmp") # Elpa is formally supported by @:5.4.0, but QE configure searches # for it in the wrong folders (or tries to download it within |