diff options
author | 2023-11-15 12:29:33 -0800 | |
---|---|---|
committer | 2023-11-17 19:06:43 -0800 | |
commit | 09ad3a6505b6345cc793acc68280069b37f816c0 (patch) | |
tree | 6eb2d137e7f84ec2cf867ae5f32bed33b5e810a2 /apex/builder.go | |
parent | 4b9d9350bd336dca00b3e1497146ed1c0999a4f7 (diff) |
Change deps of ctx.Install* from Paths to InstallPaths
Installed files should only depend on other installed files, change
the deps arguments of the ctx.Install* methods from Paths to
InstallPaths.
Bug: 311428265
Test: builds
Change-Id: I1ebef60a943bdbe907744cc43aa985371ac56d32
Merged-In: I1ebef60a943bdbe907744cc43aa985371ac56d32
Diffstat (limited to 'apex/builder.go')
-rw-r--r-- | apex/builder.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/builder.go b/apex/builder.go index ba4df5f6b..909a4792a 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -956,7 +956,7 @@ func (a *apexBundle) buildApex(ctx android.ModuleContext) { // Install to $OUT/soong/{target,host}/.../apex. a.installedFile = ctx.InstallFile(a.installDir, a.Name()+installSuffix, a.outputFile, - a.compatSymlinks.Paths()...) + a.compatSymlinks...) // installed-files.txt is dist'ed a.installedFilesFile = a.buildInstalledFilesFile(ctx, a.outputFile, imageDir) |