summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-07 09:40:12 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-08 16:04:57 +0100
commit2f731352aa21b43b35247eafd873de775eb0de34 (patch)
tree315bc7b30b96485d14475ca0d41fb9daf0843525 /meta/classes/image.bbclass
parentfa16a06a34d721d49b795674bac5100823caf16e (diff)
downloadopenembedded-core-2f731352aa21b43b35247eafd873de775eb0de34.tar.gz
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@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r--meta/classes/image.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 1768a0bda3..edfb2d68c5 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"