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

Commit d877e83e authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "individually escape results of $(locations)" into main am: 96b6a499...

Merge "individually escape results of $(locations)" into main am: 96b6a499 am: 16236fe3 am: 6f7f5cae

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



Change-Id: Ia5dd9f8ad441e785d91672c0fe17972f25e17637
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 4c54cacb 6f7f5cae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -539,7 +539,7 @@ func (g *Module) generateCommonBuildActions(ctx android.ModuleContext) {
						if len(paths) == 0 {
							return reportError("label %q has no files", label)
						}
						return proptools.ShellEscape(strings.Join(paths, " ")), nil
						return strings.Join(proptools.ShellEscapeList(paths), " "), nil
					} else {
						return reportError("unknown locations label %q is not in srcs, out, tools or tool_files.", label)
					}