aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/make.go
diff options
context:
space:
mode:
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