From: Gerd Hoffmann Date: Tue, 25 Aug 2020 06:43:42 +0000 (+0200) Subject: meson: set colorout to auto X-Git-Tag: v5.2.0-rc0~153^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90756b2fb3b95df754008024e84e7f164718bf2f;p=thirdparty%2Fqemu.git 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 Reviewed-by: Marc-André Lureau Signed-off-by: Paolo Bonzini --- diff --git a/meson.build b/meson.build index e6aa44be544..74f8ea0c2e1 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)