diff options
Diffstat (limited to 'python/binary.go')
-rw-r--r-- | python/binary.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/python/binary.go b/python/binary.go index 457c7fa0..0314edb8 100644 --- a/python/binary.go +++ b/python/binary.go @@ -133,10 +133,7 @@ func (binary *binaryDecorator) bootstrap(ctx android.ModuleContext, actual_versi var launcher_path android.Path if embedded_launcher { - ctx.VisitDirectDeps(func(m android.Module) { - if ctx.OtherModuleDependencyTag(m) != launcherTag { - return - } + ctx.VisitDirectDepsWithTag(launcherTag, func(m android.Module) { if provider, ok := m.(IntermPathProvider); ok { if launcher_path != nil { panic(fmt.Errorf("launcher path was found before: %q", |