diff options
author | 2023-08-21 21:54:37 +0000 | |
---|---|---|
committer | 2023-08-21 21:54:37 +0000 | |
commit | f36d157ce7331ec151dbefeaca4176546bf9db69 (patch) | |
tree | cb2cae5fefef5b28591dcfc952e28652ff89cadc /apex/androidmk.go | |
parent | 4147e5c1d1cf0d05bd0f41f777c9c3c9d38144ee (diff) | |
parent | b23d574655a790c903456b41ac6f6ef63c4c37d7 (diff) |
Merge "Add apex compat symlinks to LOCAL_SOONG_INSTALL_SYMLINKS" into main
Diffstat (limited to 'apex/androidmk.go')
-rw-r--r-- | apex/androidmk.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apex/androidmk.go b/apex/androidmk.go index f4690620c..b0c391846 100644 --- a/apex/androidmk.go +++ b/apex/androidmk.go @@ -287,6 +287,7 @@ func (a *apexBundle) androidMkForType() android.AndroidMkData { if a.installable() { fmt.Fprintln(w, "LOCAL_SOONG_INSTALLED_MODULE :=", a.installedFile.String()) fmt.Fprintln(w, "LOCAL_SOONG_INSTALL_PAIRS :=", a.outputFile.String()+":"+a.installedFile.String()) + fmt.Fprintln(w, "LOCAL_SOONG_INSTALL_SYMLINKS := ", strings.Join(a.compatSymlinks.Strings(), " ")) } // Because apex writes .mk with Custom(), we need to write manually some common properties |