Merge "Fix: symlink bin/arm directory is not handled correctly"
am: c793ebf1ae
Change-Id: I804e7b18359a1a032568dd6599e58e681de82767
This commit is contained in:
commit
6af7e64515
1 changed files with 1 additions and 1 deletions
|
@ -1031,7 +1031,7 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext, apexType ap
|
||||||
if f.installDir == "bin" || strings.HasPrefix(f.installDir, "bin/") {
|
if f.installDir == "bin" || strings.HasPrefix(f.installDir, "bin/") {
|
||||||
executablePaths = append(executablePaths, pathInApex)
|
executablePaths = append(executablePaths, pathInApex)
|
||||||
for _, s := range f.symlinks {
|
for _, s := range f.symlinks {
|
||||||
executablePaths = append(executablePaths, filepath.Join("bin", s))
|
executablePaths = append(executablePaths, filepath.Join(f.installDir, s))
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
readOnlyPaths = append(readOnlyPaths, pathInApex)
|
readOnlyPaths = append(readOnlyPaths, pathInApex)
|
||||||
|
|
Loading…
Reference in a new issue