diff options
author | 2024-12-12 11:01:30 -0800 | |
---|---|---|
committer | 2024-12-12 11:01:30 -0800 | |
commit | e451ed647f0ee3565f994ea4ad16fff0c3992db2 (patch) | |
tree | 8367a5500f18ca1ccc161a7a6f9adf510ee26b58 /apex/builder.go | |
parent | 63d9d3e86a0f30dfe8cf4d2da2262e52e991a6e3 (diff) | |
parent | 74d243c82194ce28b12e8b4a532e0c29dc0e5a26 (diff) |
Merge "Fix missing file errors when running with --soong-only" into main
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 45608c933..7e6664437 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -544,7 +544,7 @@ func (a *apexBundle) buildApex(ctx android.ModuleContext) { imageDir := android.PathForModuleOut(ctx, "image"+suffix) - installSymbolFiles := (!ctx.Config().KatiEnabled() || a.ExportedToMake()) && a.installable() + installSymbolFiles := (ctx.Config().KatiEnabled() && a.ExportedToMake()) && a.installable() // set of dependency module:location mappings installMapSet := make(map[string]bool) |