Fix install path of benchmarks am: 624b8ed0b3 am: 83d93f3da8

am: 3375e95f8c

Change-Id: Ic988d7a6c4067c2861f0c7f15ed1c7d444e42d25
This commit is contained in:
Colin Cross
2016-07-12 06:11:50 +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
}