Results may vary, but the general outcome is a reduced or condensed
output from portage's displays.
.TP
+.BR \-\-quiet\-build
+Redirect all build output to logs alone, and do not
+display it on stdout.
+.TP
.BR "\-\-reinstall changed\-use"
Tells emerge to include installed packages where USE flags have
changed since installation. Unlike \fB\-\-newuse\fR, this option does
@returns: True if background mode is enabled, False otherwise.
"""
background = (self._max_jobs is True or \
- self._max_jobs > 1 or "--quiet" in self.myopts) and \
+ self._max_jobs > 1 or "--quiet" in self.myopts \
+ or "--quiet-build" in self.myopts) and \
not bool(self._opts_no_background.intersection(self.myopts))
if background:
print(" Effects vary, but the general outcome is a reduced or condensed")
print(" output from portage's displays.")
print()
+ print(" "+green("--quiet-build"))
+ desc = "Redirect all build output to logs alone, and do not " + \
+ "display it on stdout."
+ for line in wrap(desc, desc_width):
+ print(desc_indent + line)
+ print()
print(" "+green("--reinstall ") + turquoise("changed-use"))
print(" Tells emerge to include installed packages where USE flags have")
print(" changed since installation. Unlike --newuse, this option does")
"--nodeps", "--noreplace",
"--nospinner", "--oneshot",
"--onlydeps", "--pretend",
-"--quiet", "--resume",
+"--quiet",
+"--quiet-build",
+"--resume",
"--searchdesc",
"--skipfirst",
"--tree",