diff options
author | Cristián Maureira-Fredes <[email protected]> | 2020-02-17 15:07:37 +0100 |
---|---|---|
committer | Cristian Maureira-Fredes <[email protected]> | 2020-06-08 10:30:05 +0200 |
commit | 15b509e4ab51a0a999190ef4f567a79cbdb541f3 (patch) | |
tree | 54e72166ccbbe9068524f02132853f284a972f27 /build_scripts/utils.py | |
parent | 45d7dd636adfcbd9e086376f4260d58cc9901d41 (diff) |
Clean the build/install output a bit
* Adding STATUS or WARNING to a couple of message() calls.
* Replacing some print() by log.info()
* Changing some '*' by '-'
* Align configuration outputs to check paths easily
* Adding big message to check when shiboken2/pyside2 is being built.
* Including the cmake_minimum_required() function instead of an 'if'.
Change-Id: Idb6c5797286d400192d083403063e2ae582e3fe6
Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'build_scripts/utils.py')
-rw-r--r-- | build_scripts/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py index d1bc780dc..9f6d472cc 100644 --- a/build_scripts/utils.py +++ b/build_scripts/utils.py @@ -388,7 +388,7 @@ def run_process(args, initial_env=None): No output is captured. """ command = " ".join([(" " in x and '"{}"'.format(x) or x) for x in args]) - log.info("Running process in directory {}: command {}".format(os.getcwd(), command)) + log.info("In directory {}:\n\tRunning command: {}".format(os.getcwd(), command)) if initial_env is None: initial_env = os.environ |