aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-05 00:43:50 +0900
committerOphestra <cat@gensokyo.uk>2026-03-05 00:43:50 +0900
commit97448e210404cfceae7243043c222acac4297a58 (patch)
tree7f9ed54393a43bbd342f3632b1130e066d358624 /internal
parenta87ad28b8ba3ea847d0490490af5dec50f7f9851 (diff)
internal/rosa/squashfs: enter correct directory
This was missed during the make helper migration. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal')
-rw-r--r--internal/rosa/squashfs.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/internal/rosa/squashfs.go b/internal/rosa/squashfs.go
index 004f4eff..79d97f11 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,