summaryrefslogtreecommitdiffstats
path: root/meta/classes/gtk-icon-cache.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-03 22:10:21 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-17 22:32:03 +0000
commit069a332d1cf0778831673ed4ab5dfadbe2758783 (patch)
treecac103c685297423bdc5f67f8af9ac8dd64cc699 /meta/classes/gtk-icon-cache.bbclass
parent68ceb02e98c977dd3eadea2c38b5eb796d6b6db4 (diff)
downloadpoky-069a332d1cf0778831673ed4ab5dfadbe2758783.tar.gz
classes: Drop none package specific packaging variable accesses
(From OE-Core rev: 24cbe88429ba021d7c461e0271b67106d11d5eb2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/gtk-icon-cache.bbclass')
-rw-r--r--meta/classes/gtk-icon-cache.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass
index 2ca99acdf9..223a280338 100644
--- a/meta/classes/gtk-icon-cache.bbclass
+++ b/meta/classes/gtk-icon-cache.bbclass
@@ -51,13 +51,13 @@ python populate_packages_append () {
51 51
52 bb.note("adding gtk-icon-cache postinst and postrm scripts to %s" % pkg) 52 bb.note("adding gtk-icon-cache postinst and postrm scripts to %s" % pkg)
53 53
54 postinst = d.getVar('pkg_postinst_%s' % pkg, True) or d.getVar('pkg_postinst', True) 54 postinst = d.getVar('pkg_postinst_%s' % pkg, True)
55 if not postinst: 55 if not postinst:
56 postinst = '#!/bin/sh\n' 56 postinst = '#!/bin/sh\n'
57 postinst += d.getVar('gtk_icon_cache_postinst', True) 57 postinst += d.getVar('gtk_icon_cache_postinst', True)
58 d.setVar('pkg_postinst_%s' % pkg, postinst) 58 d.setVar('pkg_postinst_%s' % pkg, postinst)
59 59
60 postrm = d.getVar('pkg_postrm_%s' % pkg, True) or d.getVar('pkg_postrm', True) 60 postrm = d.getVar('pkg_postrm_%s' % pkg, True)
61 if not postrm: 61 if not postrm:
62 postrm = '#!/bin/sh\n' 62 postrm = '#!/bin/sh\n'
63 postrm += d.getVar('gtk_icon_cache_postrm', True) 63 postrm += d.getVar('gtk_icon_cache_postrm', True)