Skip to content

Commit

Permalink
gtk-icon-cache bbclass: python += doesn't add a leading space like bi…
Browse files Browse the repository at this point in the history
…tbake does, so fix that

Signed-off-by: Koen Kooi <koen@openembedded.org>
  • Loading branch information
Koen Kooi committed Sep 16, 2011
1 parent 5fc0f27 commit 959f727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/gtk-icon-cache.bbclass
Expand Up @@ -36,7 +36,7 @@ python populate_packages_append () {

bb.note("adding hicolor-icon-theme dependency to %s" % pkg)
rdepends = bb.data.getVar('RDEPENDS', d, 1)
rdepends += "hicolor-icon-theme"
rdepends += " hicolor-icon-theme"
bb.data.setVar('RDEPENDS', rdepends, d)

bb.note("adding gtk-icon-cache postinst and postrm scripts to %s" % pkg)
Expand Down

0 comments on commit 959f727

Please sign in to comment.