diff options
author | Richard Purdie <richard@openedhand.com> | 2006-02-13 13:09:56 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-02-13 13:09:56 +0000 |
commit | d0bf2b3192862de9027f64c2b71151940b9a1e0c (patch) | |
tree | bde412d42698353cdeff8578bc61fbd37feb5210 /bitbake/bin | |
parent | a6775856463dd3cab66ee40fb7a25ac4e5d184ac (diff) | |
download | poky-d0bf2b3192862de9027f64c2b71151940b9a1e0c.tar.gz |
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
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 1 |
1 files changed, 1 insertions, 0 deletions
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: | |||
655 | if (item == pn): | 655 | if (item == pn): |
656 | rdepends += bb.utils.explode_deps(bb.data.getVar('RDEPENDS', the_data, True) or "") | 656 | rdepends += bb.utils.explode_deps(bb.data.getVar('RDEPENDS', the_data, True) or "") |
657 | rdepends += bb.utils.explode_deps(bb.data.getVar('RRECOMMENDS', the_data, True) or "") | 657 | rdepends += bb.utils.explode_deps(bb.data.getVar('RRECOMMENDS', the_data, True) or "") |
658 | rdepends += bb.utils.explode_deps(bb.data.getVar("RDEPENDS_%s" % pn, the_data, True) or "") | ||
658 | else: | 659 | else: |
659 | packages = (bb.data.getVar('PACKAGES', the_data, 1).split() or "") | 660 | packages = (bb.data.getVar('PACKAGES', the_data, 1).split() or "") |
660 | for package in packages: | 661 | for package in packages: |