From d0bf2b3192862de9027f64c2b71151940b9a1e0c Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 13 Feb 2006 13:09:56 +0000 Subject: Fix an bitbake RDEPENDS bug and add a hack to work around quilt-native issues (the alternative is to start creating a load of native packages to map the runtime depends to build time ones). git-svn-id: https://svn.o-hand.com/repos/poky/trunk@275 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- bitbake/bin/bitbake | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake') diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index b1fd76a4f1..f371bfe165 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -655,6 +655,7 @@ class BBCooker: if (item == pn): rdepends += bb.utils.explode_deps(bb.data.getVar('RDEPENDS', the_data, True) or "") rdepends += bb.utils.explode_deps(bb.data.getVar('RRECOMMENDS', the_data, True) or "") + rdepends += bb.utils.explode_deps(bb.data.getVar("RDEPENDS_%s" % pn, the_data, True) or "") else: packages = (bb.data.getVar('PACKAGES', the_data, 1).split() or "") for package in packages: -- cgit 1.2.3-korg