uclibc: Build ldd/ldcondif/iconv for main uclibc recipe

Currently these were not building as a result
uclibc based systems were missing ldd and any package
depending on ldd package were broken since the package
was empty.

(From OE-Core rev: b4ecf65e20a63d11f14483d213a3931f39225cdd)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj 2013-07-17 08:17:42 -07:00 committed by Richard Purdie
parent f582398852
commit 26207e241d
1 changed files with 6 additions and 1 deletions

View File

@ -156,5 +156,10 @@ do_configure() {
do_install() {
oe_runmake PREFIX=${D} install
oe_runmake PREFIX=${D} "SSP_ALL_CFLAGS=${TARGET_LINK_HASH_STYLE}" install_utils
}
# build ldd, ldconfig and friends but only for full uclibc
do_install_append_pn-uclibc () {
oe_runmake PREFIX=${D} "SSP_ALL_CFLAGS=${TARGET_LINK_HASH_STYLE}" -C utils utils_install
}