diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-19 13:14:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-19 17:18:08 +0100 |
commit | b13c344022ca07bf777b435efbd7abd1324db676 (patch) | |
tree | 25fbea032e504d598d780a7fa8785c43ac1618ef /meta/recipes-core | |
parent | 1ed15fbd4c45ec5fbdc51e769ccf06ea58a72446 (diff) | |
download | poky-b13c344022ca07bf777b435efbd7abd1324db676.tar.gz |
eglibc-package.inc: Remove duplicate locale install
Both eglibc-locale and eglibc were installing locale files into the sysroot.
Whilst this is in general harmless, its a waste of diskspace/time so this
moves the responsibility to the eglibc-locale package.
No PR bump this this is really a cleanup and doesn't affect build output,
the sstate size reduction will happen next time it is rebuilt.
(From OE-Core rev: e9bf694b635baab9238088fbeb5d2d67e9190ccd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-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 119b443649..af784565d4 100644 --- a/meta/recipes-core/eglibc/eglibc-package.inc +++ b/meta/recipes-core/eglibc/eglibc-package.inc | |||
@@ -105,6 +105,7 @@ do_install_locale () { | |||
105 | mv ${D}${datadir}/i18n ${dest}${datadir} | 105 | mv ${D}${datadir}/i18n ${dest}${datadir} |
106 | fi | 106 | fi |
107 | cp -fpPR ${D}${datadir}/* ${dest}${datadir} | 107 | cp -fpPR ${D}${datadir}/* ${dest}${datadir} |
108 | rm -rf ${D}${datadir}/locale/ | ||
108 | cp -fpPR ${WORKDIR}/SUPPORTED ${dest} | 109 | cp -fpPR ${WORKDIR}/SUPPORTED ${dest} |
109 | } | 110 | } |
110 | 111 | ||