diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-01-29 02:00:32 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-01-29 02:00:32 +0900 |
| commit | 79c0106ea091ac042621874876385a848a287f34 (patch) | |
| tree | 80e38b711079b1c090b11ad07551b4d3012b1776 /internal/rosa/gnu.go | |
| parent | 536db533de2be6ffca53b7f3ef7ad042699b8e84 (diff) | |
internal/rosa: replace busybox dash with mksh
Toybox does not provide a shell, mksh fills that gap.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/gnu.go')
| -rw-r--r-- | internal/rosa/gnu.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/rosa/gnu.go b/internal/rosa/gnu.go index 09414ebc..0160e636 100644 --- a/internal/rosa/gnu.go +++ b/internal/rosa/gnu.go @@ -59,6 +59,7 @@ func (t Toolchain) newAutoconf() pkg.Artifact { t.Load(Make), t.Load(M4), t.Load(Perl), + t.Load(Bash), }, nil, nil, ` cd "$(mktemp -d)" /usr/src/autoconf/configure \ @@ -205,6 +206,7 @@ func (t Toolchain) newCoreutils() pkg.Artifact { return t.New("coreutils-"+version, false, []pkg.Artifact{ t.Load(Make), t.Load(Perl), + t.Load(Bash), t.Load(KernelHeaders), }, nil, nil, ` @@ -212,6 +214,8 @@ cd /usr/src/coreutils test_disable() { chmod +w "$2" && echo "$1" > "$2"; } test_disable '#!/bin/sh' gnulib-tests/test-c32ispunct.sh +test_disable '#!/bin/sh' tests/split/line-bytes.sh +test_disable '#!/bin/sh' tests/dd/no-allocate.sh cd "$(mktemp -d)" /usr/src/coreutils/configure \ |
