diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2013-07-05 03:17:51 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-09 07:56:14 -0700 |
commit | 9e615e2a6845d3a98f5d9b0cb555d132c696fc92 (patch) | |
tree | 8e87f7e3d75d8495cfa01ee87197dfe834b3cf28 /meta | |
parent | 8026d9f84c6af3996ada906d39ff1e7a986a9b5a (diff) | |
download | openembedded-core-9e615e2a6845d3a98f5d9b0cb555d132c696fc92.tar.gz openembedded-core-9e615e2a6845d3a98f5d9b0cb555d132c696fc92.tar.bz2 openembedded-core-9e615e2a6845d3a98f5d9b0cb555d132c696fc92.zip |
eglibc-locale: add missing dependency on virtual/${TARGET_PREFIX}binutils
* eglibc-collateral.inc inhibits all default deps, but do_package needs
objcopy:
ERROR: objcopy failed with exit code 127 (cmd was
'i586-webos-linux-objcopy' --only-keep-debug
'eglibc-locale/2.17-r0/package/usr/lib/gconv/IBM1166.so'
'eglibc-locale/2.17-r0/package/usr/lib/gconv/.debug/IBM1166.so')
ERROR: Function failed: split_and_strip_files
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/eglibc/eglibc-locale.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-locale.inc b/meta/recipes-core/eglibc/eglibc-locale.inc index f4cb814cd3..c3fcc6d749 100644 --- a/meta/recipes-core/eglibc/eglibc-locale.inc +++ b/meta/recipes-core/eglibc/eglibc-locale.inc @@ -5,6 +5,11 @@ SUMMARY = "Locale data from eglibc" BPN = "eglibc" LOCALEBASEPN = "${MLPREFIX}eglibc" +# eglibc-collateral.inc inhibits all default deps, but do_package needs objcopy +# ERROR: objcopy failed with exit code 127 (cmd was 'i586-webos-linux-objcopy' --only-keep-debug 'eglibc-locale/2.17-r0/package/usr/lib/gconv/IBM1166.so' 'eglibc-locale/2.17-r0/package/usr/lib/gconv/.debug/IBM1166.so') +# ERROR: Function failed: split_and_strip_files +DEPENDS_class-target = "virtual/${TARGET_PREFIX}binutils" + # Binary locales are generated at build time if ENABLE_BINARY_LOCALE_GENERATION # is set. The idea is to avoid running localedef on the target (at first boot) # to decrease initial boot time and avoid localedef being killed by the OOM |