summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/eglibc/eglibc-locale.inc
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2011-08-03 23:19:33 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-03 18:07:24 +0100
commit37fb8cd04972222e0661844df07c16c88defa8e5 (patch)
tree9167613f3d162cbd5e0c61fcd31ee5d70de229d3 /meta/recipes-core/eglibc/eglibc-locale.inc
parent889455c98e575ac596c80cc5ae1e508f4fbbe25e (diff)
downloadpoky-37fb8cd04972222e0661844df07c16c88defa8e5.tar.gz
eglibc-locale: Specially handle FILES_eglibc-gconv for multilib
In multilib support, it iterate values in PACKAGES and then extend name for variables like "FILES_xxx", "SUMMARY_xxx", etc. However eglibc-gconv is dynamically put in PACKAGES by package_do_split_gconv function. Therefore the name will not be extended automatically. Specially handle the FILES variable for eglibc-gconv to fix the issue of missing "lib32-eglibc-gconv" issue in doing multilib do_rootfs. Also when set PACKAGES, add the MLPREFIX. (From OE-Core rev: 4a5cc82218fa730b898c553875accfeb6800f9a4) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc-locale.inc')
-rw-r--r--meta/recipes-core/eglibc/eglibc-locale.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-locale.inc b/meta/recipes-core/eglibc/eglibc-locale.inc
index b496ce696c..ca3940dc52 100644
--- a/meta/recipes-core/eglibc/eglibc-locale.inc
+++ b/meta/recipes-core/eglibc/eglibc-locale.inc
@@ -41,7 +41,10 @@ PACKAGES_DYNAMIC = "locale-base-* \
41 41
42DESCRIPTION_localedef = "eglibc: compile locale definition files" 42DESCRIPTION_localedef = "eglibc: compile locale definition files"
43 43
44FILES_eglibc-gconv = "${libdir}/gconv/*" 44# eglibc-gconv is dynamically added into PACKAGES, thus
45# FILES_eglibc-gconv will not be automatically extended in multilib.
46# Explicitly add ${MLPREFIX} for FILES_eglibc-gconv.
47FILES_${MLPREFIX}eglibc-gconv = "${libdir}/gconv/*"
45FILES_${PN}-dbg += "${libdir}/gconv/.debug/*" 48FILES_${PN}-dbg += "${libdir}/gconv/.debug/*"
46FILES_localedef${PKGSUFFIX} = "${bindir}/localedef" 49FILES_localedef${PKGSUFFIX} = "${bindir}/localedef"
47 50