diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-08-10 21:48:58 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-08-10 21:55:47 +0900 |
| commit | 7193656b6a7b5e41a3d87d1b7012361e17986194 (patch) | |
| tree | 692b419453060f15fcda4563b1cbad49deafafd2 /internal/rosa/package/gnu.az | |
| parent | 7d86e19c07b3a76cbba08dd209dc6bcea6067029 (diff) | |
internal/rosa: improve helper bindings
This uses more intuitive names for some arguments and inverts their default value. Slices and nil-capable strings replace skip arguments.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/gnu.az')
| -rw-r--r-- | internal/rosa/package/gnu.az | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/internal/rosa/package/gnu.az b/internal/rosa/package/gnu.az index d3886ffd..b3ed798c 100644 --- a/internal/rosa/package/gnu.az +++ b/internal/rosa/package/gnu.az @@ -19,7 +19,7 @@ chmod +w tests/test-c32ispunct.sh && echo '#!/bin/sh' > tests/test-c32ispunct.sh toyboxEarly = true; exec = make { - omitDefaults = true; + defaults = false; }; inputs = [ @@ -114,7 +114,7 @@ package libtool { exec = make { // _Z2a2c: symbol not found - skipEarlyStageCheck = true; + checkEarly = false; check = [ "TESTSUITEFLAGS=" + jobsFlagE, @@ -142,7 +142,7 @@ package gzip { exec = make { // dependency loop - skipCheck = true; + check = nil; }; } @@ -197,7 +197,7 @@ test_disable '#!/bin/sh' tests/cmp toyboxEarly = true; exec = make { - omitDefaults = true; + defaults = false; }; } @@ -223,7 +223,7 @@ test_disable '#!/bin/sh' tests/need-filename toyboxEarly = true; exec = make { - omitDefaults = true; + defaults = false; }; } @@ -334,7 +334,7 @@ package bash { toyboxEarly = true; exec = make { - omitDefaults = true; + defaults = false; configure = { "without-bash-malloc"; }; @@ -371,7 +371,7 @@ test_disable 'int main(){return 0;}' gnulib-tests/test-lchown.c `; exec = make { - omitDefaults = true; + defaults = false; configure = { "enable-single-binary": "symlinks"; }; @@ -436,7 +436,7 @@ package texinfo { exec = make { // nonstandard glibc extension - skipCheck = true; + check = nil; }; inputs = [ perl ]; @@ -648,7 +648,7 @@ package mpc { enterSource = true; exec = make { - inPlace = true; + chdir = false; generate = "autoreconf -vfi"; }; |
