Various distccd related improvements, mostly respect --verbose (#216)

I've done some refactoring while debugging #209.
* Unused file `pmb/build/crosscompiler.py` removed (that was a
  left over from `_pmb_build_in_native_chroot` hack
* Do verbose logging in distccd, when `pmbootstrap --verbose` is
  being invoked
* Restart distccd, when the commandline has changed (e.g. when the
  currently running version was not verbose, and the new one is
  verbose.) Prior to this change, it only got restarted, when the
  architecture changed (so it did not allow changing the job count
  on the fly for example).
* Insert missing whitespace in arguments help.
This commit is contained in:
Oliver Smith 2017-07-21 16:25:52 +00:00 committed by GitHub
parent cf0dc2a989
commit 56b34212f6
4 changed files with 67 additions and 72 deletions

View file

@ -108,7 +108,7 @@ def arguments():
parser.add_argument("-l", "--log", dest="log", default=None)
parser.add_argument("-v", "--verbose", dest="verbose",
action="store_true", help="write even more to the"
"logfile (this may reduce performance)")
" logfiles (this may reduce performance)")
parser.add_argument("-q", "--quiet", dest="quiet",
action="store_true", help="do not output any log messages")