]> code.ossystems Code Review - openembedded-core.git/commitdiff
lib/oe/rootfs.py: rename _uninstall_uneeded to fix spelling error
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Mon, 26 Jan 2015 15:56:06 +0000 (15:56 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 3 Feb 2015 14:53:39 +0000 (14:53 +0000)
Rename it to _uninstall_unneeded.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
meta/lib/oe/rootfs.py

index 420c0b96239a213b3f594b51d14b3b6510633a9c..c554f22fbe344c4f20539af6a9f1a8820802f0c1 100644 (file)
@@ -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: