diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2020-08-25 08:43:42 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-08-27 18:52:30 +0200 |
| commit | 90756b2fb3b95df754008024e84e7f164718bf2f (patch) | |
| tree | bda25fb31e88f65d8c4617aab0340aec800179a3 | |
| parent | 363743dacb5e6b0949dd2bc305bafc9594d2c799 (diff) | |
| download | focaccia-qemu-90756b2fb3b95df754008024e84e7f164718bf2f.tar.gz focaccia-qemu-90756b2fb3b95df754008024e84e7f164718bf2f.zip | |
meson: set colorout to auto
Dunno why the default is set to "always". IMHO it should be "auto", i.e. only colorize in case stdout goes to a terminal. Cluttering logfiles and confusing compiler message parsers with terminal control sequences is not nice ... Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index e6aa44be54..74f8ea0c2e 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,6 @@ project('qemu', ['c'], meson_version: '>=0.55.0', - default_options: ['warning_level=1', 'c_std=gnu99', 'cpp_std=gnu++11', 'b_lundef=false'], + default_options: ['warning_level=1', 'c_std=gnu99', 'cpp_std=gnu++11', + 'b_lundef=false','b_colorout=auto'], version: run_command('head', meson.source_root() / 'VERSION').stdout().strip()) not_found = dependency('', required: false) |