[oe-commits] Chris Larson : oe.patch: kill long standing annoying messages from the non-quilt patch application

git version control git at git.openembedded.org
Mon May 24 03:50:41 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 1a2a620b19398a80b6f3286c7dc8dd3161f8f01f
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=1a2a620b19398a80b6f3286c7dc8dd3161f8f01f

Author: Chris Larson <chris_larson at mentor.com>
Date:   Sun May 23 20:45:52 2010 -0700

oe.patch: kill long standing annoying messages from the non-quilt patch application

Signed-off-by: Chris Larson <chris_larson at mentor.com>

---

 lib/oe/patch.py |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/lib/oe/patch.py b/lib/oe/patch.py
index 54c12ba..7f6b0fe 100644
--- a/lib/oe/patch.py
+++ b/lib/oe/patch.py
@@ -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)
 
 





More information about the Openembedded-commits mailing list