aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2018-07-22 21:18:45 -0700
committerDan Willemsen <dwillemsen@google.com>2018-07-22 21:18:45 -0700
commit59339a29e1e8ec90752f6b9a65deb45ea49f93ce (patch)
tree23053e7f36f9cb7eb9ba9917bb93bbbcf0f2382e /python
parentee74203bfbc0071a71ee783220cd563d20e961e7 (diff)
downloadbuild_soong-59339a29e1e8ec90752f6b9a65deb45ea49f93ce.tar.gz
build_soong-59339a29e1e8ec90752f6b9a65deb45ea49f93ce.tar.bz2
build_soong-59339a29e1e8ec90752f6b9a65deb45ea49f93ce.zip
Fix `go vet` issues
Test: go vet ./... Change-Id: Ifb936ccc5e2b5a2c3fcbbbcb54f680e2973ea1b3
Diffstat (limited to 'python')
-rw-r--r--python/python.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python.go b/python/python.go
index feb17da0..e8b47131 100644
--- a/python/python.go
+++ b/python/python.go
@@ -306,7 +306,7 @@ func (p *Module) DepsMutator(ctx android.BottomUpMutatorContext) {
if p.bootstrapper != nil && p.isEmbeddedLauncherEnabled(pyVersion2) {
ctx.AddVariationDependencies(nil, pythonLibTag, "py2-stdlib")
ctx.AddFarVariationDependencies([]blueprint.Variation{
- {"arch", ctx.Target().String()},
+ {Mutator: "arch", Variation: ctx.Target().String()},
}, launcherTag, "py2-launcher")
}