[oe-commits] Richard Purdie : image.bbclass: Add LINGUAS_INSTALL to dependency list

git version control git at git.openembedded.org
Fri Jul 8 15:25:19 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 2f731352aa21b43b35247eafd873de775eb0de34
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=2f731352aa21b43b35247eafd873de775eb0de34

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Thu Jul  7 09:40:12 2011 -0700

image.bbclass: Add LINGUAS_INSTALL to dependency list

Currently if there are locales to install in the image the appropriate
packages might not automatically get built since there is no dependency
being exposed to bitbake.

This patch exposes the missing dependencies to bitbake through the RDEPENDS
field hence ensuring images build successfully when locales are added but
not depended upon anywhere else in the build.

[YOCTO #1215]

Signed-off-by: Saul Wold <sgw at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/image.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 1768a0b..edfb2d6 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -5,7 +5,7 @@ inherit imagetest-${IMAGETEST}
 
 LICENSE = "MIT"
 PACKAGES = ""
-RDEPENDS += "${IMAGE_INSTALL}"
+RDEPENDS += "${IMAGE_INSTALL} ${LINGUAS_INSTALL}"
 
 INHIBIT_DEFAULT_DEPS = "1"
 





More information about the Openembedded-commits mailing list