Fix LOCAL_EXPORT_C_INCLUDE_DIRS processing am: e6c7f18364 am: 3a3ab234f1

am: 171eeaeecb

Change-Id: Ia5d189d2c9979dc31834db265c63062df31c8e81
This commit is contained in:
Dan Willemsen
2016-07-13 20:55:59 +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) {