summaryrefslogtreecommitdiffstats
path: root/pym/portage/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/__init__.py')
-rw-r--r--pym/portage/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 71fa0c6d5..66e3377ac 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -4292,7 +4292,7 @@ def _post_src_install_checks(mysettings):
noiselevel=-1)
return retval
-def _check_build_log(mysettings):
+def _check_build_log(mysettings, out=None):
"""
Search the content of $PORTAGE_LOG_FILE if it exists
and generate the following QA Notices when appropriate:
@@ -4337,7 +4337,7 @@ def _check_build_log(mysettings):
from portage.elog.messages import eqawarn
def _eqawarn(lines):
for line in lines:
- eqawarn(line, phase="install", key=mysettings.mycpv)
+ eqawarn(line, phase="install", key=mysettings.mycpv, out=out)
from textwrap import wrap
wrap_width = 70