* [PATCH] gtk-icon-cache: fix RDEPENDS append bug
@ 2011-08-06 7:25 Koen Kooi
2011-08-08 13:11 ` Richard Purdie
0 siblings, 1 reply; 2+ messages in thread
From: Koen Kooi @ 2011-08-06 7:25 UTC (permalink / raw)
To: openembedded-core; +Cc: Koen Kooi
python += doesn't add a leading space, which we do need:
| Collected errors:
| * satisfy_dependencies_for: Cannot satisfy the following dependencies for task-gnome-themes:
| * gnome-icon-themehicolor-icon-theme *
| * opkg_install_cmd: Cannot install package task-gnome-themes.
| * satisfy_dependencies_for: Cannot satisfy the following dependencies for task-gnome-apps:
| * iso-codeshicolor-icon-theme *
| * opkg_install_cmd: Cannot install package task-gnome-apps.
| * satisfy_dependencies_for: Cannot satisfy the following dependencies for task-gnome:
| * grephicolor-icon-theme *
| * opkg_install_cmd: Cannot install package task-gnome.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
meta/classes/gtk-icon-cache.bbclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass
index 5d8ef34..3bfb8ff 100644
--- a/meta/classes/gtk-icon-cache.bbclass
+++ b/meta/classes/gtk-icon-cache.bbclass
@@ -38,7 +38,7 @@ python populate_packages_append () {
bb.note("adding hicolor-icon-theme dependency to %s" % pkg)
rdepends = bb.data.getVar('RDEPENDS_%s' % pkg, d, 1)
- rdepends += "hicolor-icon-theme"
+ 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)
--
1.6.6.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] gtk-icon-cache: fix RDEPENDS append bug
2011-08-06 7:25 [PATCH] gtk-icon-cache: fix RDEPENDS append bug Koen Kooi
@ 2011-08-08 13:11 ` Richard Purdie
0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2011-08-08 13:11 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi
On Sat, 2011-08-06 at 09:25 +0200, Koen Kooi wrote:
> python += doesn't add a leading space, which we do need:
>
> | Collected errors:
> | * satisfy_dependencies_for: Cannot satisfy the following dependencies for task-gnome-themes:
> | * gnome-icon-themehicolor-icon-theme *
> | * opkg_install_cmd: Cannot install package task-gnome-themes.
> | * satisfy_dependencies_for: Cannot satisfy the following dependencies for task-gnome-apps:
> | * iso-codeshicolor-icon-theme *
> | * opkg_install_cmd: Cannot install package task-gnome-apps.
> | * satisfy_dependencies_for: Cannot satisfy the following dependencies for task-gnome:
> | * grephicolor-icon-theme *
> | * opkg_install_cmd: Cannot install package task-gnome.
>
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
> meta/classes/gtk-icon-cache.bbclass | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
Squashed into the original commit since that hadn't merged yet and both
merged into master, thanks.
Richard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-08-08 13:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-06 7:25 [PATCH] gtk-icon-cache: fix RDEPENDS append bug Koen Kooi
2011-08-08 13:11 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox