diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-18 18:20:17 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-18 21:23:19 +0900 |
| commit | 34822925e18cb35e1815d3837a8b55169953d876 (patch) | |
| tree | b623d2ff87dea4b2f9d5b2fc32a78ae135b8d11e /internal/rosa/cmake.go | |
| parent | 37df040d85e06100c69c6aa3560b2e4ebf977255 (diff) | |
internal/rosa: migrate GNU software
These are quite trivial, so migrate them in one pass.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/cmake.go')
| -rw-r--r-- | internal/rosa/cmake.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/cmake.go b/internal/rosa/cmake.go index 358fe1e3..16d549c9 100644 --- a/internal/rosa/cmake.go +++ b/internal/rosa/cmake.go @@ -164,7 +164,7 @@ func (*CMakeHelper) createDir() bool { return true } func (*CMakeHelper) wantsDir() string { return "/cure/" } // script generates the cure script. -func (attr *CMakeHelper) script(s *S, name string) string { +func (attr *CMakeHelper) script(t Toolchain, name string) string { if attr == nil { attr = new(CMakeHelper) } @@ -180,7 +180,7 @@ func (attr *CMakeHelper) script(s *S, name string) string { } script := attr.Script - if !attr.SkipTest && s.opts&OptSkipCheck == 0 { + if !attr.SkipTest && t.opts&OptSkipCheck == 0 { script += "\n" + test } |
