diff options
Diffstat (limited to 'android/vintf_fragment.go')
-rw-r--r-- | android/vintf_fragment.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/vintf_fragment.go b/android/vintf_fragment.go index 42eaaf01a..a3343fd5a 100644 --- a/android/vintf_fragment.go +++ b/android/vintf_fragment.go @@ -25,7 +25,7 @@ type vintfFragmentModule struct { properties vintfFragmentProperties installDirPath InstallPath - outputFilePath OutputPath + outputFilePath Path } func init() { @@ -64,7 +64,7 @@ func (m *vintfFragmentModule) GenerateAndroidBuildActions(ctx ModuleContext) { builder.Build("assemble_vintf", "Process vintf fragment "+processedVintfFragment.String()) m.installDirPath = PathForModuleInstall(ctx, "etc", "vintf", "manifest") - m.outputFilePath = processedVintfFragment.OutputPath + m.outputFilePath = processedVintfFragment ctx.InstallFile(m.installDirPath, processedVintfFragment.Base(), processedVintfFragment) } |