Merge "respect relative_install_path for binaries in APEXes"
am: 1b7a4b0074
Change-Id: Iea11f82e57d44f4df30348412f520c3e32f2e109
This commit is contained in:
commit
b6195afa0d
2 changed files with 4 additions and 7 deletions
|
@ -613,9 +613,7 @@ func getCopyManifestForNativeLibrary(cc *cc.Module, handleSpecialLibs bool) (fil
|
|||
}
|
||||
|
||||
func getCopyManifestForExecutable(cc *cc.Module) (fileToCopy android.Path, dirInApex string) {
|
||||
// TODO(b/123721777) respect relative_install_path also for binaries
|
||||
// dirInApex = filepath.Join("bin", cc.RelativeInstallPath())
|
||||
dirInApex = "bin"
|
||||
dirInApex = filepath.Join("bin", cc.RelativeInstallPath())
|
||||
fileToCopy = cc.OutputFile().Path()
|
||||
return
|
||||
}
|
||||
|
|
|
@ -696,10 +696,9 @@ func TestFilesInSubDir(t *testing.T) {
|
|||
ensureListContains(t, dirs, "lib/foo")
|
||||
ensureListContains(t, dirs, "lib/foo/bar")
|
||||
|
||||
// TODO(b/123721777) respect relative path for binaries
|
||||
// ensureListContains(t, dirs, "bin")
|
||||
// ensureListContains(t, dirs, "bin/foo")
|
||||
// ensureListContains(t, dirs, "bin/foo/bar")
|
||||
ensureListContains(t, dirs, "bin")
|
||||
ensureListContains(t, dirs, "bin/foo")
|
||||
ensureListContains(t, dirs, "bin/foo/bar")
|
||||
}
|
||||
|
||||
func TestUseVendor(t *testing.T) {
|
||||
|
|
Loading…
Reference in a new issue