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/x.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/rosa/x.go') diff --git a/internal/rosa/x.go b/internal/rosa/x.go index 8b9e6edf..19f3ee68 100644 --- a/internal/rosa/x.go +++ b/internal/rosa/x.go @@ -9,6 +9,8 @@ func (t Toolchain) newXproto() pkg.Artifact { ) return t.New("xproto-"+version, 0, []pkg.Artifact{ t.Load(Make), + t.Load(Gawk), + t.Load(Coreutils), t.Load(PkgConfig), }, nil, nil, ` cd "$(mktemp -d)" @@ -32,6 +34,8 @@ func (t Toolchain) newLibXau() pkg.Artifact { ) return t.New("libXau-"+version, 0, []pkg.Artifact{ t.Load(Make), + t.Load(Gawk), + t.Load(Coreutils), t.Load(PkgConfig), t.Load(Xproto), -- cgit v1.3.1