* [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS
@ 2011-08-05 14:18 Koen Kooi
2011-08-05 16:25 ` Richard Purdie
2011-08-30 11:52 ` Michael Morscher
0 siblings, 2 replies; 6+ messages in thread
From: Koen Kooi @ 2011-08-05 14:18 UTC (permalink / raw)
To: openembedded-core; +Cc: Koen Kooi
This fixes do_rootfs breaking because OE didn't resolve the RDEPENDS added with python
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
meta/classes/gtk-icon-cache.bbclass | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass
index 4981aec..8436cd3 100644
--- a/meta/classes/gtk-icon-cache.bbclass
+++ b/meta/classes/gtk-icon-cache.bbclass
@@ -1,5 +1,7 @@
FILES_${PN} += "${datadir}/icons/hicolor"
+DEPENDS += "${@['hicolor-icon-theme', '']['${BPN}' == 'hicolor-icon-theme']}"
+
# This could run on the host as icon cache files are architecture independent,
# but there is no gtk-update-icon-cache built natively.
gtk_icon_cache_postinst() {
--
1.6.6.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS
2011-08-05 14:18 [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS Koen Kooi
@ 2011-08-05 16:25 ` Richard Purdie
2011-08-30 11:52 ` Michael Morscher
1 sibling, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2011-08-05 16:25 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi
On Fri, 2011-08-05 at 16:18 +0200, Koen Kooi wrote:
> This fixes do_rootfs breaking because OE didn't resolve the RDEPENDS added with python
>
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
> meta/classes/gtk-icon-cache.bbclass | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass
> index 4981aec..8436cd3 100644
> --- a/meta/classes/gtk-icon-cache.bbclass
> +++ b/meta/classes/gtk-icon-cache.bbclass
> @@ -1,5 +1,7 @@
> FILES_${PN} += "${datadir}/icons/hicolor"
>
> +DEPENDS += "${@['hicolor-icon-theme', '']['${BPN}' == 'hicolor-icon-theme']}"
> +
> # This could run on the host as icon cache files are architecture independent,
> # but there is no gtk-update-icon-cache built natively.
> gtk_icon_cache_postinst() {
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS
2011-08-05 14:18 [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS Koen Kooi
2011-08-05 16:25 ` Richard Purdie
@ 2011-08-30 11:52 ` Michael Morscher
2011-08-30 16:14 ` Richard Purdie
1 sibling, 1 reply; 6+ messages in thread
From: Michael Morscher @ 2011-08-30 11:52 UTC (permalink / raw)
To: openembedded-core
Hi Koen,
This is still not working for my xfce46-image, described here:
http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-August/034653.html
Bye
Michael
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS
2011-08-30 11:52 ` Michael Morscher
@ 2011-08-30 16:14 ` Richard Purdie
2011-08-30 19:54 ` Michael Morscher
0 siblings, 1 reply; 6+ messages in thread
From: Richard Purdie @ 2011-08-30 16:14 UTC (permalink / raw)
To: michael.morscher, Patches and discussions about the oe-core layer
On Tue, 2011-08-30 at 13:52 +0200, Michael Morscher wrote:
> This is still not working for my xfce46-image, described here:
> http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-August/034653.html
Is this with a clean build and with master?
To be specific, this commit
http://git.yoctoproject.org/cgit.cgi/poky/commit/?id=4a5336d403bb0b8dfe2e5f863288a7d3489132c2
should have fixed the spacing issue (note the additional space being
added).
Cheers,
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS
2011-08-30 16:14 ` Richard Purdie
@ 2011-08-30 19:54 ` Michael Morscher
2011-08-30 19:58 ` Richard Purdie
0 siblings, 1 reply; 6+ messages in thread
From: Michael Morscher @ 2011-08-30 19:54 UTC (permalink / raw)
To: openembedded-core
Hey Richard,
Thanks for your answer. That patch hasn't fixed it for me, also the
others don't... I checked your and Koens old conversations and tried all
those patches, but no change :(
I have no idea why and some DEPEND and RDEPEND things didn't fix it as
well. I'm not a pro at the moment.
I'm running the git master and copied those patches or manually edited
the smaller things. I'm not sure but all other gnome/X (not gpe) things
are broken due to that error.
MFG
Michael
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS
2011-08-30 19:54 ` Michael Morscher
@ 2011-08-30 19:58 ` Richard Purdie
0 siblings, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2011-08-30 19:58 UTC (permalink / raw)
To: michael.morscher, Patches and discussions about the oe-core layer
On Tue, 2011-08-30 at 21:54 +0200, Michael Morscher wrote:
> Thanks for your answer. That patch hasn't fixed it for me, also the
> others don't... I checked your and Koens old conversations and tried all
> those patches, but no change :(
>
> I have no idea why and some DEPEND and RDEPEND things didn't fix it as
> well. I'm not a pro at the moment.
>
> I'm running the git master and copied those patches or manually edited
> the smaller things. I'm not sure but all other gnome/X (not gpe) things
> are broken due to that error.
I'm a little confused as if you're running master, you should already
have those patches applied?
Cheers,
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-08-30 20:04 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-05 14:18 [PATCH] gtk-icon-cache: add hicolor-icon-theme to DEPENDS Koen Kooi
2011-08-05 16:25 ` Richard Purdie
2011-08-30 11:52 ` Michael Morscher
2011-08-30 16:14 ` Richard Purdie
2011-08-30 19:54 ` Michael Morscher
2011-08-30 19:58 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox