Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2ec8724 authored by Narayan Kamath's avatar Narayan Kamath Committed by Android Git Automerger
Browse files

am d85ded89: am 645a920f: Merge "Fix OEM native library path bug."

* commit 'd85ded89':
  Fix OEM native library path bug.
parents f5c6a1b3 d85ded89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5286,7 +5286,7 @@ public class PackageManagerService extends IPackageManager.Stub {
        if (FileUtils.contains(Environment.getRootDirectory(), codePath)) {
            codeRoot = Environment.getRootDirectory();
        } else if (FileUtils.contains(Environment.getOemDirectory(), codePath)) {
            codeRoot = Environment.getRootDirectory();
            codeRoot = Environment.getOemDirectory();
        } else if (FileUtils.contains(Environment.getVendorDirectory(), codePath)) {
            codeRoot = Environment.getVendorDirectory();
        } else {