diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2022-10-04 12:54:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 19:54:40 +0200 |
commit | 450a3074e26f5716cd53943cd9191b117256696d (patch) | |
tree | 392cf451ad0dc8052478fd36bb7baeabe7303dc1 | |
parent | 7f2e204e20e829b8e16d7f625936772a818003f7 (diff) | |
download | spack-450a3074e26f5716cd53943cd9191b117256696d.tar.gz spack-450a3074e26f5716cd53943cd9191b117256696d.tar.bz2 spack-450a3074e26f5716cd53943cd9191b117256696d.tar.xz spack-450a3074e26f5716cd53943cd9191b117256696d.zip |
Fix typo in documentation (#32984)
-rw-r--r-- | lib/spack/docs/build_settings.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/docs/build_settings.rst b/lib/spack/docs/build_settings.rst index 3bdeb903bd..de580a3289 100644 --- a/lib/spack/docs/build_settings.rst +++ b/lib/spack/docs/build_settings.rst @@ -392,7 +392,7 @@ The following is an example of how to enforce package properties in require: "@1.13.2" openmpi: require: - - any_of: ["~cuda", "gcc"] + - any_of: ["~cuda", "%gcc"] mpich: require: - one_of: ["+cuda", "+rocm"] |