diff options
author | Khem Raj <raj.khem@gmail.com> | 2013-07-17 08:17:42 -0700 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-18 07:16:17 -0700 |
commit | b4ecf65e20a63d11f14483d213a3931f39225cdd (patch) | |
tree | d2e9ba4a660f51083a2d13f91873bc99c18ca1ab /meta/recipes-core/uclibc | |
parent | 0b3574481cb8204513001570f5fa3cc8f50ba510 (diff) | |
download | openembedded-core-b4ecf65e20a63d11f14483d213a3931f39225cdd.tar.gz openembedded-core-b4ecf65e20a63d11f14483d213a3931f39225cdd.tar.bz2 openembedded-core-b4ecf65e20a63d11f14483d213a3931f39225cdd.zip |
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.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/uclibc')
-rw-r--r-- | meta/recipes-core/uclibc/uclibc.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-core/uclibc/uclibc.inc b/meta/recipes-core/uclibc/uclibc.inc index 86a7417f34..29bc62b107 100644 --- a/meta/recipes-core/uclibc/uclibc.inc +++ b/meta/recipes-core/uclibc/uclibc.inc @@ -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 +} + |