diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-12-19 08:19:01 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-12-20 22:54:44 -0800 |
commit | 237917b03120fbd49a5bcb9967dce8ae815cdf5d (patch) | |
tree | dda282d3aecccc0036d86eac83e7a415c5e36428 | |
parent | ac32093e975ee91ac9e17713f6388ed70061dd64 (diff) |
eglibc: Add libc_nonshared.a to FILE list in eglibc-dev.
* This file is an essential one even for shared linking so
once one installs libc6-dev package he expects the linking
to work which will not happen without this file as some
start up files refer to functions in this library therefore
package this file in eglibc-dev
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Holger Hans Peter Freyther <zecke@selfish.org>
-rw-r--r-- | recipes/eglibc/eglibc-package.bbclass | 2 | ||||
-rw-r--r-- | recipes/eglibc/eglibc.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/eglibc/eglibc-package.bbclass b/recipes/eglibc/eglibc-package.bbclass index 27437f6021..fcaba47f6e 100644 --- a/recipes/eglibc/eglibc-package.bbclass +++ b/recipes/eglibc/eglibc-package.bbclass @@ -48,7 +48,7 @@ FILES_ldd = "${bindir}/ldd" FILES_libsegfault = "${base_libdir}/libSegFault*" FILES_eglibc-extra-nss = "${base_libdir}/libnss*" FILES_sln = "/sbin/sln" -FILES_eglibc-dev_append = " ${libdir}/*.o ${bindir}/rpcgen" +FILES_eglibc-dev_append = " ${libdir}/*.o ${bindir}/rpcgen ${libdir}/libc_nonshared.a" FILES_nscd = "${sbindir}/nscd*" FILES_eglibc-utils = "${bindir}/* ${sbindir}/*" FILES_eglibc-gconv = "${libdir}/gconv/*" diff --git a/recipes/eglibc/eglibc.inc b/recipes/eglibc/eglibc.inc index 1b655e1c3a..356b838adb 100644 --- a/recipes/eglibc/eglibc.inc +++ b/recipes/eglibc/eglibc.inc @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.eglibc.org/home" SECTION = "libs" PRIORITY = "required" LICENSE = "LGPL" -INC_PR = "r7" +INC_PR = "r8" # nptl needs unwind support in gcc, which can't be built without glibc. DEPENDS = "virtual/${TARGET_PREFIX}gcc-intermediate linux-libc-headers" #this leads to circular deps, so lets not add it yet |