diff options
author | Brian Swetland <swetland@google.com> | 2010-09-19 03:39:13 -0700 |
---|---|---|
committer | Brian Swetland <swetland@google.com> | 2010-09-19 03:39:13 -0700 |
commit | fedbcde6ef552e84bf7ce7598bca7dddf1722d6a (patch) | |
tree | 5e8eb35552984b9eab610fc717ae4638966cf90e | |
parent | cb99ab98c99291a6c90043009ab8d64ec8058f9d (diff) | |
download | bionic-fedbcde6ef552e84bf7ce7598bca7dddf1722d6a.zip bionic-fedbcde6ef552e84bf7ce7598bca7dddf1722d6a.tar.gz bionic-fedbcde6ef552e84bf7ce7598bca7dddf1722d6a.tar.bz2 |
add /vendor support
- add /vendor/lib to front of default library search path
- remove long-obsolete /lib from default library search path
Change-Id: I7d33bf899be018e7cc4c213d5790bbd991023a62
-rw-r--r-- | linker/linker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/linker.c b/linker/linker.c index 15a22f8..42a5205 100644 --- a/linker/linker.c +++ b/linker/linker.c @@ -606,8 +606,8 @@ static void dump(soinfo *si) #endif static const char *sopaths[] = { + "/vendor/lib", "/system/lib", - "/lib", 0 }; |