diff options
Diffstat (limited to 'android/filegroup.go')
-rw-r--r-- | android/filegroup.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/android/filegroup.go b/android/filegroup.go index 14ed78312..9e5769a82 100644 --- a/android/filegroup.go +++ b/android/filegroup.go @@ -178,8 +178,7 @@ func (fg *fileGroup) ProcessBazelQueryResponse(ctx ModuleContext) { bazelOuts := make(Paths, 0, len(filePaths)) for _, p := range filePaths { - src := PathForBazelOut(ctx, p) - bazelOuts = append(bazelOuts, src) + bazelOuts = append(bazelOuts, PathForBazelOutRelative(ctx, ctx.ModuleDir(), p)) } fg.srcs = bazelOuts |