From 47860b038750864b8346e4d0594a272ba3fc2b2f Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 17 Feb 2026 02:39:11 +0900 Subject: [PATCH] internal/rosa/python: enable bzip2 and xz This is required by qemu test suite. Signed-off-by: Ophestra --- internal/rosa/python.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }