aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-01-26 15:56:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-03 14:53:39 +0000
commitcb217f442b8143d88112bebe4011051efbd905a3 (patch)
tree3788c8a9d3a66adc2a786470606223025eff051a
parent46fef857d6c4ac25d89b71b542b019d0ed068c19 (diff)
downloadopenembedded-core-contrib-cb217f442b8143d88112bebe4011051efbd905a3.tar.gz
lib/oe/rootfs.py: rename _uninstall_uneeded to fix spelling error
Rename it to _uninstall_unneeded. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rw-r--r--meta/lib/oe/rootfs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index 420c0b9623..c554f22fbe 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -118,7 +118,7 @@ class Rootfs(object):
if self.d.getVar('USE_DEVFS', True) != "1":
self._create_devfs()
- self._uninstall_uneeded()
+ self._uninstall_unneeded()
self._insert_feed_uris()
@@ -128,7 +128,7 @@ class Rootfs(object):
self._cleanup()
- def _uninstall_uneeded(self):
+ def _uninstall_unneeded(self):
# Remove unneeded init script symlinks
delayed_postinsts = self._get_delayed_postinsts()
if delayed_postinsts is None: