summaryrefslogtreecommitdiffstats
path: root/meta/classes/gio-module-cache.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/gio-module-cache.bbclass')
-rw-r--r--meta/classes/gio-module-cache.bbclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/classes/gio-module-cache.bbclass b/meta/classes/gio-module-cache.bbclass
index e429bd3197..021eeb1cf8 100644
--- a/meta/classes/gio-module-cache.bbclass
+++ b/meta/classes/gio-module-cache.bbclass
@@ -17,22 +17,22 @@ else
17fi 17fi
18} 18}
19 19
20python populate_packages_append () { 20python populate_packages:append () {
21 packages = d.getVar('GIO_MODULE_PACKAGES').split() 21 packages = d.getVar('GIO_MODULE_PACKAGES').split()
22 22
23 for pkg in packages: 23 for pkg in packages:
24 bb.note("adding gio-module-cache postinst and postrm scripts to %s" % pkg) 24 bb.note("adding gio-module-cache postinst and postrm scripts to %s" % pkg)
25 25
26 postinst = d.getVar('pkg_postinst_%s' % pkg) 26 postinst = d.getVar('pkg_postinst:%s' % pkg)
27 if not postinst: 27 if not postinst:
28 postinst = '#!/bin/sh\n' 28 postinst = '#!/bin/sh\n'
29 postinst += d.getVar('gio_module_cache_common') 29 postinst += d.getVar('gio_module_cache_common')
30 d.setVar('pkg_postinst_%s' % pkg, postinst) 30 d.setVar('pkg_postinst:%s' % pkg, postinst)
31 31
32 postrm = d.getVar('pkg_postrm_%s' % pkg) 32 postrm = d.getVar('pkg_postrm:%s' % pkg)
33 if not postrm: 33 if not postrm:
34 postrm = '#!/bin/sh\n' 34 postrm = '#!/bin/sh\n'
35 postrm += d.getVar('gio_module_cache_common') 35 postrm += d.getVar('gio_module_cache_common')
36 d.setVar('pkg_postrm_%s' % pkg, postrm) 36 d.setVar('pkg_postrm:%s' % pkg, postrm)
37} 37}
38 38