diff options
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 \ |
