diff --git a/internal/rosa/python.go b/internal/rosa/python.go index 1dac9d2..069b574 100644 --- a/internal/rosa/python.go +++ b/internal/rosa/python.go @@ -49,10 +49,6 @@ func (t Toolchain) newPython() pkg.Artifact { "ld-musl-" + linuxArch() + ".so.1", }, - Configure: [][2]string{ - {"with-openssl", "/system"}, - }, - ScriptEarly: ` export HOME="$(mktemp -d)" `, @@ -61,7 +57,11 @@ export HOME="$(mktemp -d)" }, t.Load(Zlib), t.Load(Libffi), + + t.Load(PkgConfig), t.Load(OpenSSL), + t.Load(Bzip2), + t.Load(XZ), ) } func init() { artifactsF[Python] = Toolchain.newPython }