aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/make.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-21 15:35:48 +0900
committerOphestra <cat@gensokyo.uk>2026-05-21 15:36:10 +0900
commitcbf18b302d51c3e667ebe06cfebb14b90ccc93b7 (patch)
treec3ad2222ae0e28cf00f11d305a44b8fb900cbf6f /internal/rosa/make.go
parent1acb5b010507dd2246b77b8c856612b86cb2eda4 (diff)
internal/rosa/package: migrate nss
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/make.go')
-rw-r--r--internal/rosa/make.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/internal/rosa/make.go b/internal/rosa/make.go
index 73fac69c..793509c9 100644
--- a/internal/rosa/make.go
+++ b/internal/rosa/make.go
@@ -5,8 +5,7 @@ import (
"strings"
)
-// Make is the build system used by [MakeHelper].
-var Make = H("make")
+var _make = H("make")
// MakeHelper is the [Make] build system helper.
type MakeHelper struct {
@@ -52,11 +51,11 @@ var _ Helper = new(MakeHelper)
// extra returns make and other optional dependencies.
func (attr *MakeHelper) extra(flag int) P {
- extra := P{Make}
+ extra := P{_make}
if (attr == nil || !attr.OmitDefaults) && flag&TEarly == 0 {
extra = append(extra,
- gawk,
- coreutils,
+ _gawk,
+ _coreutils,
)
}
return extra