diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-23 10:53:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-24 00:08:35 +0000 |
commit | d8c24378c6813036fcf9bc88cac919c3443c1446 (patch) | |
tree | a05e435acf07551332660e676eb8612873d02c69 | |
parent | 1034e798cbab0bd16e35db6ae750f146fc8689c1 (diff) | |
download | openembedded-core-d8c24378c6813036fcf9bc88cac919c3443c1446.tar.gz openembedded-core-d8c24378c6813036fcf9bc88cac919c3443c1446.tar.bz2 openembedded-core-d8c24378c6813036fcf9bc88cac919c3443c1446.zip |
eglibc: Fix package warning
WARNING: For recipe eglibc, the following files/directories were installed but not shipped in any package:
WARNING: /usr/lib/locale
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/eglibc/eglibc-package.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-package.inc b/meta/recipes-core/eglibc/eglibc-package.inc index 2a1d939786..d89871718e 100644 --- a/meta/recipes-core/eglibc/eglibc-package.inc +++ b/meta/recipes-core/eglibc/eglibc-package.inc @@ -104,5 +104,6 @@ PACKAGE_PREPROCESS_FUNCS += "eglibc_package_preprocess" eglibc_package_preprocess () { rm -rf ${PKGD}/${includedir}/eglibc-locale-internal-${MULTIMACH_TARGET_SYS} + rm -rf ${PKGD}/${libdir}/locale } |