diff options
author | Khem Raj <raj.khem@gmail.com> | 2013-07-17 08:17:42 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-18 21:23:46 +0100 |
commit | 26207e241ddc469b951ffea26dfc0661817d124d (patch) | |
tree | b6dcd72b87c55d5eff4a50b8e84c932929000164 /meta/recipes-core/uclibc | |
parent | f58239885271f18b413ac0835023b9adad6dc585 (diff) | |
download | poky-26207e241ddc469b951ffea26dfc0661817d124d.tar.gz |
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>
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() { | |||
156 | 156 | ||
157 | do_install() { | 157 | do_install() { |
158 | oe_runmake PREFIX=${D} install | 158 | oe_runmake PREFIX=${D} install |
159 | oe_runmake PREFIX=${D} "SSP_ALL_CFLAGS=${TARGET_LINK_HASH_STYLE}" install_utils | ||
160 | } | 159 | } |
160 | |||
161 | # build ldd, ldconfig and friends but only for full uclibc | ||
162 | do_install_append_pn-uclibc () { | ||
163 | oe_runmake PREFIX=${D} "SSP_ALL_CFLAGS=${TARGET_LINK_HASH_STYLE}" -C utils utils_install | ||
164 | } | ||
165 | |||