diff options
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 2f5d8d4f3..6136cbd7a 100644 --- a/apex/androidmk.go +++ b/apex/androidmk.go @@ -260,6 +260,7 @@ func (a *apexBundle) androidMkForType() android.AndroidMkData { 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(), " ")) } + fmt.Fprintln(w, "LOCAL_APEX_KEY_PATH := ", a.apexKeysPath.String()) // Because apex writes .mk with Custom(), we need to write manually some common properties // which are available via data.Entries |