summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-07 13:32:55 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-07 15:25:06 +0000
commitc920f1a7cccec62668e44d932a2dc5b44252f7db (patch)
tree9eaa1abe2836e42eac3d640183602e51625cca9a /meta/classes/image.bbclass
parent14fa964bbf8f3e2d798f8fd185c290a739cc8e0f (diff)
downloadpoky-c920f1a7cccec62668e44d932a2dc5b44252f7db.tar.gz
image.bbclass: Add MLPREFIX to DEPENDS
Add MLPREFIX to DEPENDS to ensure the correct qemuwrapper is dependended upon. Its searched for in PATH so we need to do this to ensure the correct version is present. (From OE-Core rev: 41163fc5e6662251ec264fd5194a649342d11de1) 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 5cbf73aaae..84ddc3872f 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -10,7 +10,7 @@ inherit gzipnative
10 10
11LICENSE = "MIT" 11LICENSE = "MIT"
12PACKAGES = "" 12PACKAGES = ""
13DEPENDS += "qemuwrapper-cross" 13DEPENDS += "${MLPREFIX}qemuwrapper-cross"
14RDEPENDS += "${IMAGE_INSTALL} ${LINGUAS_INSTALL} ${NORMAL_FEATURE_INSTALL} ${ROOTFS_BOOTSTRAP_INSTALL}" 14RDEPENDS += "${IMAGE_INSTALL} ${LINGUAS_INSTALL} ${NORMAL_FEATURE_INSTALL} ${ROOTFS_BOOTSTRAP_INSTALL}"
15RRECOMMENDS += "${NORMAL_FEATURE_INSTALL_OPTIONAL}" 15RRECOMMENDS += "${NORMAL_FEATURE_INSTALL_OPTIONAL}"
16 16