diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-05-23 20:45:52 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-05-23 20:46:59 -0700 |
commit | 1a2a620b19398a80b6f3286c7dc8dd3161f8f01f (patch) | |
tree | 7534c07651641fa406f87affc8e601029756afc1 /lib/oe | |
parent | 541b7473f50ddd90d5f02e84339459982f015354 (diff) |
oe.patch: kill long standing annoying messages from the non-quilt patch application
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/oe')
-rw-r--r-- | 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 54c12bac2a..7f6b0fe8de 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) |