Correct apex data in androidmk for flattened apex
Incorrectly used fmt.Println, printing to stdout instead of the desired file. Test: m com.android.art.testing Bug: 155820504 Change-Id: I1aaf15de4f18f71710bc344bc8f71723e9756ad4
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user