aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/glob.go2
-rw-r--r--common/module.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/glob.go b/common/glob.go
index 3de18eef..96655cf8 100644
--- a/common/glob.go
+++ b/common/glob.go
@@ -68,7 +68,7 @@ func hasGlob(in []string) bool {
// The subset of ModuleContext and SingletonContext needed by Glob
type globContext interface {
- Build(pctx *blueprint.PackageContext, params blueprint.BuildParams)
+ Build(pctx blueprint.PackageContext, params blueprint.BuildParams)
AddNinjaFileDeps(deps ...string)
}
diff --git a/common/module.go b/common/module.go
index e11082e8..1683671d 100644
--- a/common/module.go
+++ b/common/module.go
@@ -372,7 +372,7 @@ type androidModuleContext struct {
checkbuildFiles []string
}
-func (a *androidModuleContext) Build(pctx *blueprint.PackageContext, params blueprint.BuildParams) {
+func (a *androidModuleContext) Build(pctx blueprint.PackageContext, params blueprint.BuildParams) {
params.Optional = true
a.ModuleContext.Build(pctx, params)
}