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/acl.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/rosa/acl.go') diff --git a/internal/rosa/acl.go b/internal/rosa/acl.go index 54c29377..ca9b8771 100644 --- a/internal/rosa/acl.go +++ b/internal/rosa/acl.go @@ -10,6 +10,8 @@ func (t Toolchain) newAttr() pkg.Artifact { return t.New("attr-"+version, 0, []pkg.Artifact{ t.Load(Make), t.Load(Perl), + t.Load(Gawk), + t.Load(Coreutils), }, nil, nil, ` ln -s ../../system/bin/perl /usr/bin @@ -77,6 +79,8 @@ func (t Toolchain) newACL() pkg.Artifact { ) return t.New("acl-"+version, 0, []pkg.Artifact{ t.Load(Make), + t.Load(Gawk), + t.Load(Coreutils), t.Load(Attr), }, nil, nil, ` -- cgit v1.3.1