summaryrefslogtreecommitdiff
path: root/apex/builder.go
diff options
context:
space:
mode:
author Spandan Das <spandandas@google.com> 2025-01-22 18:48:05 +0000
committer Spandan Das <spandandas@google.com> 2025-01-22 19:52:09 +0000
commit61755e8ea86600e17f4501d188ab816240ccce7e (patch)
tree04cd7f20b974c6df2f8c168cb8a26f7639ae162f /apex/builder.go
parent315e7e84a2f4cf6b8c909d51fe169e65bce451a4 (diff)
Install apex symlinks in m --soong-only
Apexes such as com.android.runtime install additional symlinks in the staging $PRODUCT_OUT/apex directory. It uses PathForModuleInPartition("apex") to avoid the side affect of inadvertently copying this into rdeps such as system.img To prevent non-null builds when switching between `m` and `m --soong-only`, remove this special case. Test: m nothing Bug: 390471378 Change-Id: I81ff7b9c18f84cbe83836e6992124080c93359d2
Diffstat (limited to 'apex/builder.go')
-rw-r--r--apex/builder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/builder.go b/apex/builder.go
index daba6f19f..b3174727f 100644
--- a/apex/builder.go
+++ b/apex/builder.go
@@ -552,7 +552,7 @@ func (a *apexBundle) buildApex(ctx android.ModuleContext) {
imageDir := android.PathForModuleOut(ctx, "image"+suffix)
- installSymbolFiles := (ctx.Config().KatiEnabled() && a.ExportedToMake()) && a.installable()
+ installSymbolFiles := a.ExportedToMake() && a.installable()
// set of dependency module:location mappings
installMapSet := make(map[string]bool)