diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2012-10-24 10:05:14 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-24 12:50:47 +0100 |
commit | be3add2604186f0719a4bacfaced9136736023d7 (patch) | |
tree | bb755318001a8199331b1525e9e884aab5b0ba50 /meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | |
parent | feaff11484b2ac1ecc15481cab0966c5f5048fe6 (diff) | |
download | poky-be3add2604186f0719a4bacfaced9136736023d7.tar.gz |
gnome-icon-theme: fix icon mapping
Multiple errors in log.do_install as:
Can't locate XML/Simple.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/../libexec/icon-name-mapping line 12.
(From OE-Core rev: 40b3945c89c0c6fc1dc3a72a83bfcba1ad94b562)
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb')
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb index 8e7995b322..2eb5fda2fe 100644 --- a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb +++ b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | |||
@@ -6,10 +6,10 @@ LICENSE = "LGPLv3+ | CC-BY-SA-3.0" | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=e7e289d90fc8bdceed5e3f142f98229e" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=e7e289d90fc8bdceed5e3f142f98229e" |
7 | 7 | ||
8 | SECTION = "x11/gnome" | 8 | SECTION = "x11/gnome" |
9 | DEPENDS = "icon-naming-utils-native glib-2.0 intltool-native" | 9 | DEPENDS = "icon-naming-utils-native glib-2.0 intltool-native libxml-simple-perl-native" |
10 | RDEPENDS_${PN} = "hicolor-icon-theme" | 10 | RDEPENDS_${PN} = "hicolor-icon-theme" |
11 | RRECOMMENDS_${PN} = "librsvg-gtk" | 11 | RRECOMMENDS_${PN} = "librsvg-gtk" |
12 | PR = "r3" | 12 | PR = "r4" |
13 | 13 | ||
14 | FILES_${PN} += "${datadir}/*" | 14 | FILES_${PN} += "${datadir}/*" |
15 | 15 | ||
@@ -22,5 +22,4 @@ SRC_URI[sha256sum] = "ea7e05b77ead159379392b3b275ca0c9cbacd7d936014e447cc7c5e27a | |||
22 | EXTRA_OECONF = "--disable-hicolor-check" | 22 | EXTRA_OECONF = "--disable-hicolor-check" |
23 | EXTRA_OECONF += "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('gnome-icon-theme', 'icon-naming-utils')}/icon-name-mapping" | 23 | EXTRA_OECONF += "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('gnome-icon-theme', 'icon-naming-utils')}/icon-name-mapping" |
24 | 24 | ||
25 | 25 | inherit autotools perlnative | |
26 | inherit autotools | ||