From 10b6d9aebd2cbc78f724620c6f8b68b6806b4507 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 5 Mar 2026 00:35:51 +0900 Subject: [PATCH] internal/rosa/squashfs: enter correct directory This was missed when migrating to the make helper. Signed-off-by: Ophestra --- internal/rosa/squashfs.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/internal/rosa/squashfs.go b/internal/rosa/squashfs.go index 004f4ef..79d97f1 100644 --- a/internal/rosa/squashfs.go +++ b/internal/rosa/squashfs.go @@ -14,9 +14,8 @@ func (t Toolchain) newSquashfsTools() (pkg.Artifact, string) { pkg.TarGzip, ), &PackageAttr{ // uses source tree as scratch space - Writable: true, - Chmod: true, - EnterSource: true, + Writable: true, + Chmod: true, Env: []string{ "CONFIG=1", @@ -26,8 +25,8 @@ func (t Toolchain) newSquashfsTools() (pkg.Artifact, string) { "COMP_DEFAULT=zstd", "USE_PREBUILT_MANPAGES=y", }, + ScriptEarly: "cd squashfs-tools", }, &MakeHelper{ - SkipConfigure: true, InPlace: true,