summaryrefslogtreecommitdiff
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/build.py22
1 files changed, 18 insertions, 4 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index e4e767ebc..3138fbc16 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -103,13 +103,27 @@ class TaskInvalid(TaskBase):
self._message = "No such task '%s'" % task
-class tee(file):
+class LogTee(object):
+ def __init__(self, logger, *files):
+ self.files = files
+ self.logger = logger
+
def write(self, string):
- logger.plain(string)
- file.write(self, string)
+ self.logger.plain(string)
+ for f in self.files:
+ f.write(string)
+
+ def __enter__(self):
+ for f in self.files:
+ f.__enter__()
+ return self
+
+ def __exit__(self, *excinfo):
+ for f in self.files:
+ f.__exit__(*excinfo)
def __repr__(self):
- return "<open[tee] file '{0}'>".format(self.name)
+ return '<LogTee {0}>'.format(', '.join(repr(f.name) for f in self.files))
def exec_func(func, d, dirs = None, logfile = NULL):