diff options
author | Jonathan Liu <net147@gmail.com> | 2015-03-11 13:25:56 +1100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-17 22:38:34 +0100 |
commit | 7c6d8054bb87e56180920d790efc25d42e25ab8c (patch) | |
tree | ecc041a6bc93af6c59c11da2cea8e1e3a96792b1 | |
parent | 986b46517ed9cd0821821371faab68e92c2d6dab (diff) | |
download | openembedded-core-7c6d8054bb87e56180920d790efc25d42e25ab8c.tar.gz openembedded-core-7c6d8054bb87e56180920d790efc25d42e25ab8c.tar.bz2 openembedded-core-7c6d8054bb87e56180920d790efc25d42e25ab8c.zip |
fontcache.bbclass: prepend to PACKAGEFUNCS instead of appending
Appending to PACKAGEFUNCS results in the font packages missing the
postinst/postrm scripts and the fontconfig cache not being generated
in /var/cache/fontconfig when creating images or installing font
packages. This is because the package data has already been emitted
by emit_pkgdata in PACKAGEFUNCS. Prepend to PACKAGEFUNCS to ensure
add_fontcache_postinsts is executed before emit_pkgdata.
[YOCTO #7410]
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/classes/fontcache.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/fontcache.bbclass b/meta/classes/fontcache.bbclass index 2bf1e4bd1b..dcd1f04064 100644 --- a/meta/classes/fontcache.bbclass +++ b/meta/classes/fontcache.bbclass @@ -42,4 +42,4 @@ python add_fontcache_postinsts() { d.setVar('pkg_postrm_%s' % pkg, postrm) } -PACKAGEFUNCS += "add_fontcache_postinsts" +PACKAGEFUNCS =+ "add_fontcache_postinsts" |