summaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authorAnders Darander <anders.darander@gmail.com>2009-09-15 08:13:10 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2009-09-15 08:50:12 +0200
commitb96253a63e67e45d015e249473765953044004d2 (patch)
tree801a530e0f40e33b1d2b77e6383d1aa57c1e5d73 /toolchain
parent76aaac62a6da754b653d1f34e86133e19f364041 (diff)
downloadbuildroot-novena-b96253a63e67e45d015e249473765953044004d2.tar.gz
buildroot-novena-b96253a63e67e45d015e249473765953044004d2.zip
DNS resolv problem with glibc
Fix problem with dns resolv, by copying the libnss_dns.so to the rootfs. Using glibc from external toolchain, name resolving does not work, unless libnss_dns.so is available on the target. Signed-off-by: Anders Darander <ad@datarespons.se> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/external-toolchain/ext-tool.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/external-toolchain/ext-tool.mk b/toolchain/external-toolchain/ext-tool.mk
index 568ac3a35..1f5aa1932 100644
--- a/toolchain/external-toolchain/ext-tool.mk
+++ b/toolchain/external-toolchain/ext-tool.mk
@@ -198,7 +198,7 @@ EXTERNAL_LIBS=libc.so libcrypt.so libdl.so libgcc_s.so libm.so libnsl.so libpthr
ifeq ($(BR2_TOOLCHAIN_EXTERNAL_UCLIBC),y)
EXTERNAL_LIBS+=ld-uClibc.so
else
-EXTERNAL_LIBS+=ld-linux.so libnss_files.so
+EXTERNAL_LIBS+=ld-linux.so libnss_files.so libnss_dns.so
endif
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)