aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-02-17 02:39:11 +0900
committerOphestra <cat@gensokyo.uk>2026-02-17 02:39:11 +0900
commit47860b038750864b8346e4d0594a272ba3fc2b2f (patch)
treeb27f1c7bf2215c1c99a3bc84b9080baedbe22fd0
parent50c9da8b6d5ae48ca6dffbc2d5928a51a7a03cbc (diff)
internal/rosa/python: enable bzip2 and xz
This is required by qemu test suite. Signed-off-by: Ophestra <cat@gensokyo.uk>
-rw-r--r--internal/rosa/python.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/rosa/python.go b/internal/rosa/python.go
index 1dac9d22..069b574d 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 }