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

Commit 33417df7 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Fix OEM native library path bug.

Bug: 13340779
Change-Id: I3d69b3453d3d284295bbfa771e6fb4a36bca05c5
parent dd77fdac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5439,7 +5439,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 {