diff options
-rw-r--r-- | meta/classes/fontcache.bbclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/classes/fontcache.bbclass b/meta/classes/fontcache.bbclass index afd3fd2252..2bf1e4bd1b 100644 --- a/meta/classes/fontcache.bbclass +++ b/meta/classes/fontcache.bbclass | |||
@@ -18,13 +18,16 @@ else | |||
18 | fi | 18 | fi |
19 | } | 19 | } |
20 | 20 | ||
21 | python populate_packages_append() { | 21 | python () { |
22 | font_pkgs = d.getVar('FONT_PACKAGES', True).split() | 22 | font_pkgs = d.getVar('FONT_PACKAGES', True).split() |
23 | deps = d.getVar("FONT_EXTRA_RDEPENDS", True) | 23 | deps = d.getVar("FONT_EXTRA_RDEPENDS", True) |
24 | 24 | ||
25 | for pkg in font_pkgs: | 25 | for pkg in font_pkgs: |
26 | if deps: d.appendVar('RDEPENDS_' + pkg, ' '+deps) | 26 | if deps: d.appendVar('RDEPENDS_' + pkg, ' '+deps) |
27 | } | ||
27 | 28 | ||
29 | python add_fontcache_postinsts() { | ||
30 | for pkg in d.getVar('FONT_PACKAGES', True).split(): | ||
28 | bb.note("adding fonts postinst and postrm scripts to %s" % pkg) | 31 | bb.note("adding fonts postinst and postrm scripts to %s" % pkg) |
29 | postinst = d.getVar('pkg_postinst_%s' % pkg, True) or d.getVar('pkg_postinst', True) | 32 | postinst = d.getVar('pkg_postinst_%s' % pkg, True) or d.getVar('pkg_postinst', True) |
30 | if not postinst: | 33 | if not postinst: |
@@ -38,3 +41,5 @@ python populate_packages_append() { | |||
38 | postrm += d.getVar('fontcache_common', True) | 41 | postrm += d.getVar('fontcache_common', True) |
39 | d.setVar('pkg_postrm_%s' % pkg, postrm) | 42 | d.setVar('pkg_postrm_%s' % pkg, postrm) |
40 | } | 43 | } |
44 | |||
45 | PACKAGEFUNCS += "add_fontcache_postinsts" | ||