diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-07-30 00:16:57 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-07-30 00:18:22 +0900 |
| commit | 6487b41d922f56d46167802780fcde62d1f27095 (patch) | |
| tree | a17e76fcb4cd790c3396a26960d45430672c0637 /internal/rosa/package/gnu.az | |
| parent | 7908fb9583cb6af84345508390ec9ea9fc986763 (diff) | |
internal/rosa: remove legacy exec helper
This change also adds a fourth stage to the bootstrap machinery, offering more correct toolchain validation that works around LLVM dynamic linking flaws.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/gnu.az')
| -rw-r--r-- | internal/rosa/package/gnu.az | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/internal/rosa/package/gnu.az b/internal/rosa/package/gnu.az index 7cfcc726..d4b9b5b2 100644 --- a/internal/rosa/package/gnu.az +++ b/internal/rosa/package/gnu.az @@ -17,9 +17,11 @@ package m4 { chmod +w tests/test-c32ispunct.sh && echo '#!/bin/sh' > tests/test-c32ispunct.sh `; - exec = make {}; - toyboxEarly = true; + exec = make { + omitDefaults = true; + }; + inputs = [ diffutils, @@ -194,7 +196,9 @@ test_disable '#!/bin/sh' tests/cmp `; toyboxEarly = true; - exec = make {}; + exec = make { + omitDefaults = true; + }; } package patch { @@ -218,7 +222,9 @@ test_disable '#!/bin/sh' tests/need-filename `; toyboxEarly = true; - exec = make {}; + exec = make { + omitDefaults = true; + }; } package grep { @@ -328,6 +334,7 @@ package bash { toyboxEarly = true; exec = make { + omitDefaults = true; configure = { "without-bash-malloc"; }; @@ -364,6 +371,7 @@ test_disable 'int main(){return 0;}' gnulib-tests/test-lchown.c `; exec = make { + omitDefaults = true; configure = { "enable-single-binary": "symlinks"; }; |
