diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-07-07 09:17:49 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-13 12:34:30 +0100 |
commit | c661f8e0d5a9a9e61ee471d30b97e89ccfab4545 (patch) | |
tree | 7a348cfdec35e6f3714c1e2574d8192f226fa9d1 | |
parent | ef0d0e105fdbb759f8a98a48fa0026586e663c40 (diff) | |
download | poky-c661f8e0d5a9a9e61ee471d30b97e89ccfab4545.tar.gz |
eglibc: fix installed but not packaged files
Fixes these package QA warnings:
WARNING: For recipe eglibc, the following files were installed but not shipped in any package:
WARNING: /etc/localtime
(From OE-Core rev: 9070c91c1242ec5ea8a8c7f0dd4cf40e8ce59221)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/eglibc/eglibc-package.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-package.inc b/meta/recipes-core/eglibc/eglibc-package.inc index 1a9953d61c..344f5e4ee3 100644 --- a/meta/recipes-core/eglibc/eglibc-package.inc +++ b/meta/recipes-core/eglibc/eglibc-package.inc | |||
@@ -88,6 +88,10 @@ DESCRIPTION_libsotruss = "Library to support sotruss which traces calls through | |||
88 | 88 | ||
89 | inherit libc-common | 89 | inherit libc-common |
90 | 90 | ||
91 | do_install_append () { | ||
92 | rm -f ${D}${sysconfdir}/localtime | ||
93 | } | ||
94 | |||
91 | do_install_locale () { | 95 | do_install_locale () { |
92 | dest=${D}/${includedir}/eglibc-locale-internal-${MULTIMACH_TARGET_SYS} | 96 | dest=${D}/${includedir}/eglibc-locale-internal-${MULTIMACH_TARGET_SYS} |
93 | install -d ${dest}${base_libdir} ${dest}${bindir} ${dest}${libdir} ${dest}${datadir} | 97 | install -d ${dest}${base_libdir} ${dest}${bindir} ${dest}${libdir} ${dest}${datadir} |