diff options
author | 2025-01-31 13:17:58 -0800 | |
---|---|---|
committer | 2025-01-31 13:17:58 -0800 | |
commit | 0d3fd565f7c9c4f0442b9728fba0e10a023186aa (patch) | |
tree | 303654b399f39b3acb98de960bb19e268fbb599c /apex/builder.go | |
parent | d015ce2e687d5b7d56fe55e657cd5e6d68c7b737 (diff) |
Install apex symbol file
This is a partial revert of aosp/3308088. We need the symbol file
to still be installed, because a later ctx.InstallSymlink file adds
a dependency on the it.
We removed that install initially so that it didn't get installed in
filesystems, to replace that, just exclude files installed to the
"apex" partition from filesystems.
Bug: 393617060
Test: cd bionic; mm
Change-Id: Id4abe966c630d1e356575386af233eab92849934
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 b3174727f..3f2623ee8 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -603,7 +603,7 @@ func (a *apexBundle) buildApex(ctx android.ModuleContext) { } else { if installSymbolFiles { // store installedPath. symlinks might be created if required. - installedPath = apexDir.Join(ctx, fi.installDir, fi.stem()) + installedPath = ctx.InstallFile(apexDir.Join(ctx, fi.installDir), fi.stem(), fi.builtFile) } } |