diff options
author | David Collins <dcollin@sandia.gov> | 2024-09-16 12:44:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 11:44:27 -0700 |
commit | 2b70f8367c88e6c2a7ed3ce4768533a6d9b09d95 (patch) | |
tree | cba75c58e5a66e5b93aea60fc45672162e2ac44e | |
parent | a9a23f45651380c769ddcf72fee9a770b0b82cb8 (diff) | |
download | spack-2b70f8367c88e6c2a7ed3ce4768533a6d9b09d95.tar.gz spack-2b70f8367c88e6c2a7ed3ce4768533a6d9b09d95.tar.bz2 spack-2b70f8367c88e6c2a7ed3ce4768533a6d9b09d95.tar.xz spack-2b70f8367c88e6c2a7ed3ce4768533a6d9b09d95.zip |
Use the correct variable in configure() in bash package.py (#46384)
-rw-r--r-- | var/spack/repos/builtin/packages/bash/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/bash/package.py b/var/spack/repos/builtin/packages/bash/package.py index 1aa02c1f7a..4af7b56e98 100644 --- a/var/spack/repos/builtin/packages/bash/package.py +++ b/var/spack/repos/builtin/packages/bash/package.py @@ -205,7 +205,7 @@ class Bash(AutotoolsPackage, GNUMirrorPackage): args.append("--without-libiconv-prefix") # bash malloc relies on sbrk which fails intentionally in musl if spec.satisfies("^[virtuals=libc] musl"): - options.append("--without-bash-malloc") + args.append("--without-bash-malloc") return args def check(self): |