oe.patch: kill long standing annoying messages from the non-quilt patch application
authorChris Larson <chris_larson@mentor.com>
Mon, 24 May 2010 03:45:52 +0000 (20:45 -0700)
committerChris Larson <chris_larson@mentor.com>
Mon, 24 May 2010 03:46:59 +0000 (20:46 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
lib/oe/patch.py

index 54c12ba..7f6b0fe 100644 (file)
@@ -126,22 +126,18 @@ class PatchTree(PatchSet):
         return output
 
     def Push(self, force = False, all = False, run = True):
-        bb.note("self._current is %s" % self._current)
-        bb.note("patches is %s" % self.patches)
         if all:
             for i in self.patches:
                 if self._current is not None:
                     self._current = self._current + 1
                 else:
                     self._current = 0
-                bb.note("applying patch %s" % i)
                 self._applypatch(i, force)
         else:
             if self._current is not None:
                 self._current = self._current + 1
             else:
                 self._current = 0
-            bb.note("applying patch %s" % self.patches[self._current])
             return self._applypatch(self.patches[self._current], force)