am 242b2e0b: Merge "Use /system/lib64 and /vendor/lib64 for 64-bit libraries."

* commit '242b2e0b928f83083f60bbb856309122981299af':
  Use /system/lib64 and /vendor/lib64 for 64-bit libraries.
This commit is contained in:
Elliott Hughes 2013-10-08 14:52:04 -07:00 committed by Android Git Automerger
commit 97368e8232

View File

@ -90,8 +90,13 @@ static soinfo* sonext = &libdl_info;
static soinfo* somain; /* main process, always the one after libdl_info */
static const char* const gSoPaths[] = {
#if __LP64__
"/vendor/lib64",
"/system/lib64",
#else
"/vendor/lib",
"/system/lib",
#endif
NULL
};