Fix install path of benchmarks am: 624b8ed0b3

am: 83d93f3da8

Change-Id: I7e24de2c40fddb54be72bf293cfa71af72aa7fe3
This commit is contained in:
Colin Cross
2016-07-12 06:09:05 +00:00
committed by android-build-merger

View File

@@ -2254,10 +2254,12 @@ func NewBenchmark(hod android.HostOrDeviceSupported) *Module {
module := newModule(hod, android.MultilibFirst)
module.compiler = &baseCompiler{}
module.linker = &benchmarkLinker{}
module.installer = &baseInstaller{
dir: "nativetest",
dir64: "nativetest64",
data: true,
module.installer = &testInstaller{
baseInstaller: baseInstaller{
dir: "nativetest",
dir64: "nativetest64",
data: true,
},
}
return module
}