diff options
author | Henrique BR <60271325+Heinrich-BR@users.noreply.github.com> | 2024-06-27 11:59:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 12:59:11 +0200 |
commit | 6b73195478fd0764fd7635fbf70db00b2e7797af (patch) | |
tree | 9d469b3aa9d904fb3ad0d0331fece2f22fd43b40 | |
parent | c7b9bf6a773797509c300e71141caf7d0498785c (diff) | |
download | spack-6b73195478fd0764fd7635fbf70db00b2e7797af.tar.gz spack-6b73195478fd0764fd7635fbf70db00b2e7797af.tar.bz2 spack-6b73195478fd0764fd7635fbf70db00b2e7797af.tar.xz spack-6b73195478fd0764fd7635fbf70db00b2e7797af.zip |
Fixed typo in hypre package (#44921)
Co-authored-by: “Henrique <henrique.bergallo-rocha@ukaea.uk>
-rw-r--r-- | var/spack/repos/builtin/packages/hypre/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/hypre/package.py b/var/spack/repos/builtin/packages/hypre/package.py index a4a60d2d8b..9395fe1903 100644 --- a/var/spack/repos/builtin/packages/hypre/package.py +++ b/var/spack/repos/builtin/packages/hypre/package.py @@ -282,7 +282,7 @@ class Hypre(AutotoolsPackage, CudaPackage, ROCmPackage): else: configure_args.append("--enable-cub") if spec.satisfies("+cublas"): - conigure_args.append("--enable-cublas") + configure_args.append("--enable-cublas") else: configure_args.extend(["--without-cuda", "--disable-curand", "--disable-cusparse"]) if spec.satisfies("@:2.20.99"): |