Fix LOCAL_EXPORT_C_INCLUDE_DIRS processing am: e6c7f18364
am: 3a3ab234f1
Change-Id: Ibb34ad2660e62dc27ace282e1a5ac8b7d02753de
This commit is contained in:
4
cc/cc.go
4
cc/cc.go
@@ -1490,7 +1490,9 @@ type flagExporter struct {
|
|||||||
|
|
||||||
func (f *flagExporter) exportIncludes(ctx ModuleContext, inc string) {
|
func (f *flagExporter) exportIncludes(ctx ModuleContext, inc string) {
|
||||||
includeDirs := android.PathsForModuleSrc(ctx, f.Properties.Export_include_dirs)
|
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) {
|
func (f *flagExporter) reexportFlags(flags []string) {
|
||||||
|
Reference in New Issue
Block a user