1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-03 01:40:07 +00:00

Import fixups

(Bitbake rev: 4fa052f426e3205ebace713eaa22deddc0420e8a)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson
2010-04-08 10:22:29 -07:00
committed by Richard Purdie
parent 7acc132cac
commit 1c74fd768f
15 changed files with 34 additions and 41 deletions
+4 -3
View File
@@ -22,9 +22,10 @@ Message handling infrastructure for bitbake
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import sys, bb
import sys
import collections
from bb import event
import bb
import bb.event
debug_level = collections.defaultdict(lambda: 0)
verbose = False
@@ -54,7 +55,7 @@ class MsgBase(bb.event.Event):
def __init__(self, msg):
self._message = msg
event.Event.__init__(self)
bb.event.Event.__init__(self)
class MsgDebug(MsgBase):
"""Debug Message"""