Fix install path of benchmarks

am: 624b8ed0b3

Change-Id: I50844c0c90d3a7da14adea60561b7d248ac43fc0
This commit is contained in:
Colin Cross
2016-07-12 06:06:14 +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 := newModule(hod, android.MultilibFirst)
module.compiler = &baseCompiler{} module.compiler = &baseCompiler{}
module.linker = &benchmarkLinker{} module.linker = &benchmarkLinker{}
module.installer = &baseInstaller{ module.installer = &testInstaller{
dir: "nativetest", baseInstaller: baseInstaller{
dir64: "nativetest64", dir: "nativetest",
data: true, dir64: "nativetest64",
data: true,
},
} }
return module return module
} }