aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/gtk-icon-cache.bbclass
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-08-05 19:35:57 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-08 13:36:18 +0100
commit34fca51d84d4629d82880aa0f47123db86de256b (patch)
tree424a1ef5284cff8addde4fc406c170d4af79103a /meta/classes/gtk-icon-cache.bbclass
parenta0034efba2c5960ef946de318438794acb13f454 (diff)
downloadopenembedded-core-34fca51d84d4629d82880aa0f47123db86de256b.tar.gz
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.bbclass6
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)