From 0d3fd565f7c9c4f0442b9728fba0e10a023186aa Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Fri, 31 Jan 2025 13:17:58 -0800 Subject: 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 --- apex/builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apex/builder.go') 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) } } -- cgit v1.2.3-59-g8ed1b