Merge "Fix inverted error message" am: 8f33dcc9e3

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1804261

Change-Id: I24d402da44ff2378beb1c5e15b1380318a4aa087
This commit is contained in:
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux
2021-08-20 22:28:04 +00:00
committed by Automerger Merge Worker

View File

@@ -675,7 +675,7 @@ func (p *Module) collectPathsFromTransitiveDeps(ctx android.ModuleContext) {
if !isPythonLibModule(child) { if !isPythonLibModule(child) {
ctx.PropertyErrorf("libs", ctx.PropertyErrorf("libs",
"the dependency %q of module %q is not Python library!", "the dependency %q of module %q is not Python library!",
ctx.ModuleName(), ctx.OtherModuleName(child)) ctx.OtherModuleName(child), ctx.ModuleName())
} }
// collect source and data paths, checking that there are no duplicate output file conflicts // collect source and data paths, checking that there are no duplicate output file conflicts
if dep, ok := child.(pythonDependency); ok { if dep, ok := child.(pythonDependency); ok {