From: Koen Kooi Date: Fri, 5 Aug 2011 17:35:57 +0000 (+0200) Subject: gtk-icon-cache bbclass: don't assing to global RDEPENDS X-Git-Tag: yocto-4.0~40126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=34fca51d84d4629d82880aa0f47123db86de256b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass index 4142d0ed53e..3bfb8ff8951 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)