aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/cmake.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/rosa/cmake.go')
-rw-r--r--internal/rosa/cmake.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/internal/rosa/cmake.go b/internal/rosa/cmake.go
index bb488abd..cbce846e 100644
--- a/internal/rosa/cmake.go
+++ b/internal/rosa/cmake.go
@@ -6,8 +6,7 @@ import (
"strings"
)
-// CMake is the package used by [CMakeHelper].
-var CMake = H("cmake")
+var _cmake = H("cmake")
// CMakeHelper is the [CMake] build system helper.
type CMakeHelper struct {
@@ -35,9 +34,9 @@ var _ Helper = new(CMakeHelper)
// extra returns a hardcoded slice of [CMake] and [Ninja].
func (attr *CMakeHelper) extra(int) P {
if attr != nil && attr.Make {
- return P{CMake, Make}
+ return P{_cmake, _make}
}
- return P{CMake, Ninja}
+ return P{_cmake, _ninja}
}
// wantsChmod returns false.