diff options
author | Ross Burton <ross@openedhand.com> | 2006-11-20 14:58:47 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2006-11-20 14:58:47 +0000 |
commit | 99498a127e405e9fc066aae3c7bb1d43d14e2967 (patch) | |
tree | bd2f6241d8d89e8b204e8ff85b6cfc96ff9c1bf1 /meta/classes | |
parent | eb0d34da85e3508132a5d51bfc9b7fd82e1f3fcc (diff) | |
download | openembedded-core-99498a127e405e9fc066aae3c7bb1d43d14e2967.tar.gz openembedded-core-99498a127e405e9fc066aae3c7bb1d43d14e2967.tar.bz2 openembedded-core-99498a127e405e9fc066aae3c7bb1d43d14e2967.zip |
Fix whitespace
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@883 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/update-rc.d.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass index 0248c646b6..768ca61b93 100644 --- a/meta/classes/update-rc.d.bbclass +++ b/meta/classes/update-rc.d.bbclass @@ -56,10 +56,10 @@ python populate_packages_prepend () { prerm = '#!/bin/sh\n' prerm += bb.data.getVar('updatercd_prerm', localdata, 1) bb.data.setVar('pkg_prerm_%s' % pkg, prerm, d) - postrm = bb.data.getVar('pkg_postrm', localdata, 1) - if not postrm: - postrm = '#!/bin/sh\n' - postrm += bb.data.getVar('updatercd_postrm', localdata, 1) + postrm = bb.data.getVar('pkg_postrm', localdata, 1) + if not postrm: + postrm = '#!/bin/sh\n' + postrm += bb.data.getVar('updatercd_postrm', localdata, 1) bb.data.setVar('pkg_postrm_%s' % pkg, postrm, d) pkgs = bb.data.getVar('INITSCRIPT_PACKAGES', d, 1) |