diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-08-05 19:35:57 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-08 13:36:18 +0100 |
commit | 34fca51d84d4629d82880aa0f47123db86de256b (patch) | |
tree | 424a1ef5284cff8addde4fc406c170d4af79103a /meta/classes/gtk-icon-cache.bbclass | |
parent | a0034efba2c5960ef946de318438794acb13f454 (diff) | |
download | openembedded-core-34fca51d84d4629d82880aa0f47123db86de256b.tar.gz openembedded-core-34fca51d84d4629d82880aa0f47123db86de256b.tar.bz2 openembedded-core-34fca51d84d4629d82880aa0f47123db86de256b.zip |
gtk-icon-cache bbclass: don't assing to global RDEPENDS
Only the package with the icons needs it
[Squashed laster RDEPENDS fix from koen into commit]
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta/classes/gtk-icon-cache.bbclass')
-rw-r--r-- | meta/classes/gtk-icon-cache.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass index 4142d0ed53..3bfb8ff895 100644 --- a/meta/classes/gtk-icon-cache.bbclass +++ b/meta/classes/gtk-icon-cache.bbclass @@ -37,9 +37,9 @@ python populate_packages_append () { continue bb.note("adding hicolor-icon-theme dependency to %s" % pkg) - rdepends = bb.data.getVar('RDEPENDS', d, 1) - rdepends += "hicolor-icon-theme" - bb.data.setVar('RDEPENDS', rdepends, d) + rdepends = bb.data.getVar('RDEPENDS_%s' % pkg, d, 1) + rdepends += " hicolor-icon-theme" + bb.data.setVar('RDEPENDS_%s' % pkg, rdepends, d) bb.note("adding gtk-icon-cache postinst and postrm scripts to %s" % pkg) |