diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-03 22:10:21 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-17 22:32:03 +0000 |
| commit | 069a332d1cf0778831673ed4ab5dfadbe2758783 (patch) | |
| tree | cac103c685297423bdc5f67f8af9ac8dd64cc699 /meta/classes/gconf.bbclass | |
| parent | 68ceb02e98c977dd3eadea2c38b5eb796d6b6db4 (diff) | |
| download | poky-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/gconf.bbclass')
| -rw-r--r-- | meta/classes/gconf.bbclass | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/meta/classes/gconf.bbclass b/meta/classes/gconf.bbclass index cc01bcad2a..e9076b2779 100644 --- a/meta/classes/gconf.bbclass +++ b/meta/classes/gconf.bbclass | |||
| @@ -56,18 +56,15 @@ python populate_packages_append () { | |||
| 56 | if schemas != []: | 56 | if schemas != []: |
| 57 | bb.note("adding gconf postinst and prerm scripts to %s" % pkg) | 57 | bb.note("adding gconf postinst and prerm scripts to %s" % pkg) |
| 58 | d.setVar('SCHEMA_FILES', " ".join(schemas)) | 58 | d.setVar('SCHEMA_FILES', " ".join(schemas)) |
| 59 | postinst = d.getVar('pkg_postinst_%s' % pkg, True) or d.getVar('pkg_postinst', True) | 59 | postinst = d.getVar('pkg_postinst_%s' % pkg, True) |
| 60 | if not postinst: | 60 | if not postinst: |
| 61 | postinst = '#!/bin/sh\n' | 61 | postinst = '#!/bin/sh\n' |
| 62 | postinst += d.getVar('gconf_postinst', True) | 62 | postinst += d.getVar('gconf_postinst', True) |
| 63 | d.setVar('pkg_postinst_%s' % pkg, postinst) | 63 | d.setVar('pkg_postinst_%s' % pkg, postinst) |
| 64 | prerm = d.getVar('pkg_prerm_%s' % pkg, True) or d.getVar('pkg_prerm', True) | 64 | prerm = d.getVar('pkg_prerm_%s' % pkg, True) |
| 65 | if not prerm: | 65 | if not prerm: |
| 66 | prerm = '#!/bin/sh\n' | 66 | prerm = '#!/bin/sh\n' |
| 67 | prerm += d.getVar('gconf_prerm', True) | 67 | prerm += d.getVar('gconf_prerm', True) |
| 68 | d.setVar('pkg_prerm_%s' % pkg, prerm) | 68 | d.setVar('pkg_prerm_%s' % pkg, prerm) |
| 69 | rdepends = d.getVar("RDEPENDS_%s" % pkg, True) or "" | 69 | d.appendVar("RDEPENDS_%s" % pkg, ' ' + d.getVar('MLPREFIX') + 'gconf') |
| 70 | rdepends += ' ' + d.getVar('MLPREFIX') + 'gconf' | ||
| 71 | d.setVar("RDEPENDS_%s" % pkg, rdepends) | ||
| 72 | |||
| 73 | } | 70 | } |
