Since --quiet-build is enabled be default, there's no need to have it
in the options dict except when it is enabled.
"""
background = (self._max_jobs is True or \
self._max_jobs > 1 or "--quiet" in self.myopts \
- or "--quiet-build" in self.myopts) and \
+ or self.myopts.get("--quiet-build", "y") == "y") and \
not bool(self._opts_no_background.intersection(self.myopts))
if background:
"help" : "redirect build output to logs",
"type" : "choice",
"choices" : true_y_or_n,
- "default" : "y",
},
"--rebuild-if-new-rev": {
myoptions.quiet = None
if myoptions.quiet_build in true_y:
- myoptions.quiet_build = True
- else:
myoptions.quiet_build = None
if myoptions.rebuild_if_new_ver in true_y: