diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-03-29 13:16:09 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-03-29 13:16:09 +0000 |
commit | f18de830e1f83e84c9bc9f24a39b398f48b5d580 (patch) | |
tree | a571bfb06d3508f0b27e65d6f1638c3b13205a38 /toolchain/eglibc/patches/2.17/200-add-dl-search-paths.patch | |
parent | c0de55b32c435f5fbcdd783b6f58a9f1009939a4 (diff) | |
download | upstream-f18de830e1f83e84c9bc9f24a39b398f48b5d580.tar.gz upstream-f18de830e1f83e84c9bc9f24a39b398f48b5d580.tar.bz2 upstream-f18de830e1f83e84c9bc9f24a39b398f48b5d580.zip |
toolchain/eglibc: add missing ld-search-paths patch to 2.17
this patch is a copy of
trunk/toolchain/eglibc/patches/2.16/200-add-dl-search-paths.patch in
trunk/toolchain/eglibc/patches/2.17/200-add-ld-search-paths.patch
please use svn copy instead of applying it (like in
https://dev.openwrt.org/changeset/34290/)
the patch add /usr/lib in the ld search path (for eglibc 2.17),
thus helping libs like libnl-tiny.so (for iw), libjson.so.0 (for ubus,
jshn) to be found
Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 36141
Diffstat (limited to 'toolchain/eglibc/patches/2.17/200-add-dl-search-paths.patch')
-rw-r--r-- | toolchain/eglibc/patches/2.17/200-add-dl-search-paths.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/toolchain/eglibc/patches/2.17/200-add-dl-search-paths.patch b/toolchain/eglibc/patches/2.17/200-add-dl-search-paths.patch new file mode 100644 index 0000000000..70e7e604de --- /dev/null +++ b/toolchain/eglibc/patches/2.17/200-add-dl-search-paths.patch @@ -0,0 +1,14 @@ +add /usr/lib to default search path for the dynamic linker + +--- a/libc/Makeconfig ++++ b/libc/Makeconfig +@@ -539,6 +539,9 @@ + default-rpath = $(libdir) + endif + ++# Add /usr/lib to default search path for the dynamic linker ++user-defined-trusted-dirs := /usr/lib ++ + ifndef link-extra-libs + link-extra-libs = $(LDLIBS-$(@F)) + link-extra-libs-static = $(link-extra-libs) |