aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/squashfs-tools.az
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-08-10 21:48:58 +0900
committerOphestra <cat@gensokyo.uk>2026-08-10 21:55:47 +0900
commit7193656b6a7b5e41a3d87d1b7012361e17986194 (patch)
tree692b419453060f15fcda4563b1cbad49deafafd2 /internal/rosa/package/squashfs-tools.az
parent7d86e19c07b3a76cbba08dd209dc6bcea6067029 (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/squashfs-tools.az')
-rw-r--r--internal/rosa/package/squashfs-tools.az7
1 files changed, 3 insertions, 4 deletions
diff --git a/internal/rosa/package/squashfs-tools.az b/internal/rosa/package/squashfs-tools.az
index a645415f..b266e3fe 100644
--- a/internal/rosa/package/squashfs-tools.az
+++ b/internal/rosa/package/squashfs-tools.az
@@ -28,10 +28,9 @@ package squashfs-tools {
early = "cd squashfs-tools";
exec = make {
- skipConfigure = true;
- inPlace = true;
-
- skipCheck = true;
+ chdir = false;
+ configure = nil;
+ check = nil;
install = "make INSTALL_PREFIX=/work/system install";
};