diff options
Diffstat (limited to 'apex/builder.go')
-rw-r--r-- | apex/builder.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apex/builder.go b/apex/builder.go index 371d7d527..8bfb210fb 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -621,7 +621,8 @@ func (a *apexBundle) buildApex(ctx android.ModuleContext) { } } else { if installSymbolFiles { - installedPath = ctx.InstallFile(apexDir.Join(ctx, fi.installDir), fi.stem(), fi.builtFile) + // store installedPath. symlinks might be created if required. + installedPath = apexDir.Join(ctx, fi.installDir, fi.stem()) } } |