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__.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index eeecab11f..bc26b73fb 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -4509,6 +4509,11 @@ def _check_build_log(mysettings, out=None):
am_maintainer_mode_re = re.compile(r'.*/missing --run .*')
am_maintainer_mode_exclude_re = \
re.compile(r'.*/missing --run (autoheader|makeinfo)')
+
+ make_jobserver_re = \
+ re.compile(r'make\[\d+\]: warning: jobserver unavailable:')
+ make_jobserver = []
+
try:
for line in f:
if am_maintainer_mode_re.search(line) is not None and \
@@ -4523,6 +4528,10 @@ def _check_build_log(mysettings, out=None):
if configure_opts_warn_re.match(line) is not None:
configure_opts_warn.append(line.rstrip("\n"))
+
+ if make_jobserver_re.match(line) is not None:
+ make_jobserver.append(line.rstrip("\n"))
+
finally:
f.close()
@@ -4569,6 +4578,12 @@ def _check_build_log(mysettings, out=None):
msg.extend("\t" + line for line in configure_opts_warn)
_eqawarn(msg)
+ if make_jobserver:
+ msg = ["QA Notice: make jobserver unavailable:"]
+ msg.append("")
+ msg.extend("\t" + line for line in make_jobserver)
+ _eqawarn(msg)
+
def _post_src_install_uid_fix(mysettings):
"""
Files in $D with user and group bits that match the "portage"