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

Commit 2ba1a2a9 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

Change-Id: I1adf9eeca0f3af79adf1a6ff298ab7cfb52a2637
parents 356f25b5 cd89b876
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;