Use the correct variable in configure() in bash package.py (#46384)

This commit is contained in:
David Collins 2024-09-16 12:44:27 -06:00 committed by GitHub
parent a9a23f4565
commit 2b70f8367c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -205,7 +205,7 @@ def configure_args(self):
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):