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:39:07 +0100
commitf7b11f2fd5e51ad0f9e6f8d2cf02f41744eaa219 (patch)
tree229a4ca3db3c8c94ea97e72c4cd2a8b662091751 /meta/classes/image.bbclass
parent8bf7a4c8f089431a98902bcfd2b7c31e073d2db7 (diff)
downloadpoky-f7b11f2fd5e51ad0f9e6f8d2cf02f41744eaa219.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] (From OE-Core rev: 2f731352aa21b43b35247eafd873de775eb0de34) 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}
5 5
6LICENSE = "MIT" 6LICENSE = "MIT"
7PACKAGES = "" 7PACKAGES = ""
8RDEPENDS += "${IMAGE_INSTALL}" 8RDEPENDS += "${IMAGE_INSTALL} ${LINGUAS_INSTALL}"
9 9
10INHIBIT_DEFAULT_DEPS = "1" 10INHIBIT_DEFAULT_DEPS = "1"
11 11