diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-03-11 01:35:41 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-16 17:41:56 +0000 |
commit | c03c82a7073d9141afca99e7a9a71dab4221b68a (patch) | |
tree | 6ffed0be331abf0a0d2215913343e883c4064fec | |
parent | 788fd5ac01086b32c4702c136ebc52bc85ba5def (diff) | |
download | poky-c03c82a7073d9141afca99e7a9a71dab4221b68a.tar.gz |
pixbufcache.bbclass: add harfbuzz-native to PIXBUFCACHE_SYSROOT_DEP
Fixed:
DEBUG: Executing shell function pixbufcache_sstate_postinst
g_module_open() failed for sysroots/x86_64-linux/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so: libharfbuzz.so.0: cannot open shared object file: No such file or directory
(From OE-Core rev: 892c8d80e7cf36b3a45dca248969d49ce78c0cbf)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/pixbufcache.bbclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/classes/pixbufcache.bbclass b/meta/classes/pixbufcache.bbclass index b8d75bd38c..9e6ecc8a53 100644 --- a/meta/classes/pixbufcache.bbclass +++ b/meta/classes/pixbufcache.bbclass | |||
@@ -67,6 +67,11 @@ pixbufcache_sstate_postinst() { | |||
67 | # Packages that use this class should extend this variable with their runtime | 67 | # Packages that use this class should extend this variable with their runtime |
68 | # dependencies. | 68 | # dependencies. |
69 | PIXBUFCACHE_SYSROOT_DEPS = "" | 69 | PIXBUFCACHE_SYSROOT_DEPS = "" |
70 | PIXBUFCACHE_SYSROOT_DEPS_class-native = "${@['gdk-pixbuf-native:do_populate_sysroot_setscene', '']['${BPN}' == 'gdk-pixbuf']} glib-2.0-native:do_populate_sysroot_setscene libffi-native:do_populate_sysroot_setscene libpng-native:do_populate_sysroot_setscene zlib-native:do_populate_sysroot_setscene" | 70 | PIXBUFCACHE_SYSROOT_DEPS_class-native = "\ |
71 | ${@['gdk-pixbuf-native:do_populate_sysroot_setscene', '']['${BPN}' == 'gdk-pixbuf']} \ | ||
72 | glib-2.0-native:do_populate_sysroot_setscene libffi-native:do_populate_sysroot_setscene \ | ||
73 | libpng-native:do_populate_sysroot_setscene zlib-native:do_populate_sysroot_setscene \ | ||
74 | harfbuzz-native:do_populate_sysroot_setscene \ | ||
75 | " | ||
71 | do_populate_sysroot_setscene[depends] += "${PIXBUFCACHE_SYSROOT_DEPS}" | 76 | do_populate_sysroot_setscene[depends] += "${PIXBUFCACHE_SYSROOT_DEPS}" |
72 | do_populate_sysroot[depends] += "${@d.getVar('PIXBUFCACHE_SYSROOT_DEPS', True).replace('_setscene','')}" | 77 | do_populate_sysroot[depends] += "${@d.getVar('PIXBUFCACHE_SYSROOT_DEPS', True).replace('_setscene','')}" |