Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b257dcb8 authored by Anton Hansson's avatar Anton Hansson Committed by Automerger Merge Worker
Browse files

Merge "Improve error message for dupe srcs in genrule" am: a5969bec am:...

Merge "Improve error message for dupe srcs in genrule" am: a5969bec am: 8d0b528a am: 16ff38a9 am: 32c94a20

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

Change-Id: Ied314f732f419ded8fdd913bdc6396472e7710fc
parents 87a5d734 32c94a20
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -294,7 +294,7 @@ func (g *Module) GenerateAndroidBuildActions(ctx android.ModuleContext) {
		if _, exists := locationLabels[label]; !exists {
			locationLabels[label] = loc
		} else {
			ctx.ModuleErrorf("multiple labels for %q, %q and %q",
			ctx.ModuleErrorf("multiple locations for label %q: %q and %q (do you have duplicate srcs entries?)",
				label, locationLabels[label], loc)
		}
	}