diff options
| author | Dennis Schridde <devurandom@gmx.net> | 2017-05-24 09:09:17 +0200 |
|---|---|---|
| committer | Dennis Schridde <devurandom@gmx.net> | 2017-05-24 10:52:52 +0200 |
| commit | 2aa6700b25a6979826020aef087d6611a1aab40a (patch) | |
| tree | a4fbf2644a6766d281df59690faea4157ac7ce50 /src/bootstrap/bootstrap.py | |
| parent | 5b13bff5203c1bdc6ac6dc87f69b5359a9503078 (diff) | |
| download | rust-2aa6700b25a6979826020aef087d6611a1aab40a.tar.gz rust-2aa6700b25a6979826020aef087d6611a1aab40a.zip | |
bootstrap: Actually respect verbosity setting in config.toml
Diffstat (limited to 'src/bootstrap/bootstrap.py')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index bfba1a0dede..871c101511e 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -620,6 +620,11 @@ def bootstrap(): except: pass + if '\nverbose = 2' in rb.config_toml: + rb.verbose = 2 + elif '\nverbose = 1' in rb.config_toml: + rb.verbose = 1 + rb.use_vendored_sources = '\nvendor = true' in rb.config_toml or \ 'CFG_ENABLE_VENDOR' in rb.config_mk |
