Merge "Fix: TARGET_FLATTEN_APEX=true does not install any files to /system/apex"

am: 6e8fe6feb1

Change-Id: Ide50087142c82d5582fc95b7e683631e6eda9229
This commit is contained in:
Jiyong Park 2019-02-07 08:21:26 -08:00 committed by android-build-merger
commit 5168ece030
1 changed files with 1 additions and 1 deletions

View File

@ -1046,7 +1046,7 @@ func (a *apexBundle) androidMkForType(apexType apexPackaging) android.AndroidMkD
Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
moduleNames := []string{}
if a.installable() {
a.androidMkForFiles(w, name, moduleDir)
moduleNames = a.androidMkForFiles(w, name, moduleDir)
}
if a.flattened && apexType.image() {