Fix LOCAL_EXPORT_C_INCLUDE_DIRS processing

am: e6c7f18364

Change-Id: I9f0b79150d47ce515fd59379b0a2d4f48b0067fe
This commit is contained in:
Dan Willemsen
2016-07-13 20:50:26 +00:00
committed by android-build-merger

View File

@@ -1490,7 +1490,9 @@ type flagExporter struct {
func (f *flagExporter) exportIncludes(ctx ModuleContext, inc string) {
includeDirs := android.PathsForModuleSrc(ctx, f.Properties.Export_include_dirs)
f.flags = append(f.flags, android.JoinWithPrefix(includeDirs.Strings(), inc))
for _, dir := range includeDirs.Strings() {
f.flags = append(f.flags, inc + dir)
}
}
func (f *flagExporter) reexportFlags(flags []string) {