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:41:20 +0100 |
commit | 4a5336d403bb0b8dfe2e5f863288a7d3489132c2 (patch) | |
tree | 453ee1e8c06e5fc56874d90151f766b0f93b738a | |
parent | 2a4de1ef1f39f24ecd7c3bae06914031d9943dcd (diff) | |
download | poky-4a5336d403bb0b8dfe2e5f863288a7d3489132c2.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]
(From OE-Core rev: 34fca51d84d4629d82880aa0f47123db86de256b)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 () { | |||
37 | continue | 37 | continue |
38 | 38 | ||
39 | bb.note("adding hicolor-icon-theme dependency to %s" % pkg) | 39 | bb.note("adding hicolor-icon-theme dependency to %s" % pkg) |
40 | rdepends = bb.data.getVar('RDEPENDS', d, 1) | 40 | rdepends = bb.data.getVar('RDEPENDS_%s' % pkg, d, 1) |
41 | rdepends += "hicolor-icon-theme" | 41 | rdepends += " hicolor-icon-theme" |
42 | bb.data.setVar('RDEPENDS', rdepends, d) | 42 | bb.data.setVar('RDEPENDS_%s' % pkg, rdepends, d) |
43 | 43 | ||
44 | bb.note("adding gtk-icon-cache postinst and postrm scripts to %s" % pkg) | 44 | bb.note("adding gtk-icon-cache postinst and postrm scripts to %s" % pkg) |
45 | 45 | ||