* [PATCH 0/1] gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script
@ 2012-08-24 13:29 jackie.huang
2012-08-24 13:29 ` [PATCH 1/1] " jackie.huang
2012-08-27 15:54 ` [PATCH 0/1] " Saul Wold
0 siblings, 2 replies; 3+ messages in thread
From: jackie.huang @ 2012-08-24 13:29 UTC (permalink / raw)
To: openembedded-core
From: Jackie Huang <jackie.huang@windriver.com>
* Test info:
$ bitbake core-image-sato core-image-sato-sdk
$ runqemu qemux86 core-image-sato nographic
$ runqemu qemux86 core-image-sato-sdk nographic
The following changes since commit e3b0925f4c861393e436deb6b1912f9f1f325d1e:
libtool: normalize link paths before considering for RPATH (2012-08-22 14:22:51 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib jhuang0/bug2905_gdk_0823
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/bug2905_gdk_0823
Jackie Huang (1):
gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script
meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
--
1.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script
2012-08-24 13:29 [PATCH 0/1] gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script jackie.huang
@ 2012-08-24 13:29 ` jackie.huang
2012-08-27 15:54 ` [PATCH 0/1] " Saul Wold
1 sibling, 0 replies; 3+ messages in thread
From: jackie.huang @ 2012-08-24 13:29 UTC (permalink / raw)
To: openembedded-core
From: Jackie Huang <jackie.huang@windriver.com>
gtk-update-icon-cache is called for each subdir of ${datadir}/icons,
but there are some themes without an index.theme file such as
xcursor-transparent, so add -t(--ignore-theme-index) option to avoid
errors of gtk-update-icon-cache.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb
index 159bdae..99f6cb4 100644
--- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb
+++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb
@@ -21,7 +21,7 @@ SRC_URI = "http://ftp.acc.umu.se/pub/GNOME/sources/gdk-pixbuf/2.24/gdk-pixbuf-${
SRC_URI[md5sum] = "72f39b34b20f68148c1609bd27415412"
SRC_URI[sha256sum] = "da7a3f00db360913716368e19e336402755cafa93769f3cfa28a969303e4bee1"
-PR = "r5"
+PR = "r6"
inherit autotools pkgconfig gettext
@@ -65,7 +65,7 @@ GDK_PIXBUF_MODULEDIR=${libdir}/gdk-pixbuf-2.0/${LIBV}/loaders gdk-pixbuf-query-l
if [ -x ${bindir}/gtk-update-icon-cache ] && [ -d ${datadir}/icons ]; then
for icondir in /usr/share/icons/*; do
if [ -d ${icondir} ]; then
- gtk-update-icon-cache -q ${icondir}
+ gtk-update-icon-cache -t -q ${icondir}
fi
done
fi
--
1.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 0/1] gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script
2012-08-24 13:29 [PATCH 0/1] gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script jackie.huang
2012-08-24 13:29 ` [PATCH 1/1] " jackie.huang
@ 2012-08-27 15:54 ` Saul Wold
1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-08-27 15:54 UTC (permalink / raw)
To: jackie.huang; +Cc: openembedded-core
On 08/24/2012 06:29 AM, jackie.huang@windriver.com wrote:
> From: Jackie Huang <jackie.huang@windriver.com>
>
> * Test info:
> $ bitbake core-image-sato core-image-sato-sdk
> $ runqemu qemux86 core-image-sato nographic
> $ runqemu qemux86 core-image-sato-sdk nographic
>
> The following changes since commit e3b0925f4c861393e436deb6b1912f9f1f325d1e:
>
> libtool: normalize link paths before considering for RPATH (2012-08-22 14:22:51 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib jhuang0/bug2905_gdk_0823
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/bug2905_gdk_0823
>
> Jackie Huang (1):
> gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script
>
> meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-08-27 16:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-24 13:29 [PATCH 0/1] gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script jackie.huang
2012-08-24 13:29 ` [PATCH 1/1] " jackie.huang
2012-08-27 15:54 ` [PATCH 0/1] " Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox