diff options
| -rw-r--r-- | meta/classes/update-alternatives.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/update-alternatives.bbclass b/meta/classes/update-alternatives.bbclass index 9f2c250d03..e6d78703a7 100644 --- a/meta/classes/update-alternatives.bbclass +++ b/meta/classes/update-alternatives.bbclass | |||
| @@ -229,16 +229,16 @@ python populate_packages_updatealternatives () { | |||
| 229 | #bb.note('adding runtime requirement for update-alternatives for %s' % pkg) | 229 | #bb.note('adding runtime requirement for update-alternatives for %s' % pkg) |
| 230 | d.appendVar('RDEPENDS_%s' % pkg, ' ' + d.getVar('MLPREFIX') + provider) | 230 | d.appendVar('RDEPENDS_%s' % pkg, ' ' + d.getVar('MLPREFIX') + provider) |
| 231 | 231 | ||
| 232 | bb.note('adding update-alternatives calls to postinst/postrm for %s' % pkg) | 232 | bb.note('adding update-alternatives calls to postinst/prerm for %s' % pkg) |
| 233 | bb.note('%s' % alt_setup_links) | 233 | bb.note('%s' % alt_setup_links) |
| 234 | postinst = d.getVar('pkg_postinst_%s' % pkg, True) or '#!/bin/sh\n' | 234 | postinst = d.getVar('pkg_postinst_%s' % pkg, True) or '#!/bin/sh\n' |
| 235 | postinst += alt_setup_links | 235 | postinst += alt_setup_links |
| 236 | d.setVar('pkg_postinst_%s' % pkg, postinst) | 236 | d.setVar('pkg_postinst_%s' % pkg, postinst) |
| 237 | 237 | ||
| 238 | bb.note('%s' % alt_remove_links) | 238 | bb.note('%s' % alt_remove_links) |
| 239 | postrm = d.getVar('pkg_postrm_%s' % pkg, True) or '#!/bin/sh\n' | 239 | prerm = d.getVar('pkg_prerm_%s' % pkg, True) or '#!/bin/sh\n' |
| 240 | postrm += alt_remove_links | 240 | prerm += alt_remove_links |
| 241 | d.setVar('pkg_postrm_%s' % pkg, postrm) | 241 | d.setVar('pkg_prerm_%s' % pkg, prerm) |
| 242 | } | 242 | } |
| 243 | 243 | ||
| 244 | python package_do_filedeps_append () { | 244 | python package_do_filedeps_append () { |
