From fd8b2fd52229b10092fca7fb520ed33e14f3f50c Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 30 Jan 2026 01:36:47 +0900 Subject: internal/rosa: fix up dependencies These are no longer provided by the (incomplete) toybox implementations, so they need to be specified explicitly. Signed-off-by: Ophestra --- internal/rosa/xcb.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/rosa/xcb.go') diff --git a/internal/rosa/xcb.go b/internal/rosa/xcb.go index ff90d0ab..134f5d2f 100644 --- a/internal/rosa/xcb.go +++ b/internal/rosa/xcb.go @@ -9,6 +9,8 @@ func (t Toolchain) newXCBProto() pkg.Artifact { ) return t.New("xcb-proto-"+version, 0, []pkg.Artifact{ t.Load(Make), + t.Load(Gawk), + t.Load(Coreutils), t.Load(Python), }, nil, nil, ` cd "$(mktemp -d)" @@ -33,6 +35,8 @@ func (t Toolchain) newXCB() pkg.Artifact { ) return t.New("xcb-"+version, 0, []pkg.Artifact{ t.Load(Make), + t.Load(Gawk), + t.Load(Coreutils), t.Load(Python), t.Load(PkgConfig), -- cgit v1.3.1