Merge "Correct apex data in androidmk for flattened apex" am: 28f34bf920 am: 8fae075645

Change-Id: I0614f6fe2c1e05c95f3aef5b8cdffb47cddb6bf3
This commit is contained in:
Treehugger Robot 2020-05-19 19:46:25 +00:00 committed by Automerger Merge Worker
commit 80c7d15e9c
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ func (a *apexBundle) androidMkForFiles(w io.Writer, apexBundleName, apexName, mo
fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS :=", strings.Join(fi.symlinks, " "))
}
if len(fi.dataPaths) > 0 {
fmt.Println(w, "LOCAL_TEST_DATA :=", strings.Join(cc.AndroidMkDataPaths(fi.dataPaths), " "))
fmt.Fprintln(w, "LOCAL_TEST_DATA :=", strings.Join(cc.AndroidMkDataPaths(fi.dataPaths), " "))
}
if fi.module != nil && len(fi.module.NoticeFiles()) > 0 {