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

Commit 66854748 authored by Jesse Hall's avatar Jesse Hall Committed by android-build-merger
Browse files

Merge "Fix monolithic, un-suffixed GLES driver search" am: cd89b876 am: 2ba1a2a9

am: a7df41d9

Change-Id: If74096f446e4c235a5e72b6b7e8075dda4cfd09e
parents ee2fd1e7 a7df41d9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -389,7 +389,7 @@ static void* load_system_driver(const char* kind) {
        static bool find(std::string& result,
                const std::string& pattern, const char* const search, bool exact) {
            if (exact) {
                std::string absolutePath = std::string(search) + "/" + pattern;
                std::string absolutePath = std::string(search) + "/" + pattern + ".so";
                if (!access(absolutePath.c_str(), R_OK)) {
                    result = absolutePath;
                    return true;