From: Fred Morcos Date: Tue, 8 Aug 2023 20:53:59 +0000 (+0200) Subject: Meson: More readable compiler command X-Git-Tag: rec-5.1.0-alpha1~80^2~271 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1cc65f2e8d073692001cbc9bba24787adb6a915;p=thirdparty%2Fpdns.git Meson: More readable compiler command --- diff --git a/meson/summary/meson.build b/meson/summary/meson.build index d146dadb0d..a9db992a7a 100644 --- a/meson/summary/meson.build +++ b/meson/summary/meson.build @@ -3,7 +3,7 @@ summary('System', system, section: 'System') summary('C++ Compiler', cxx.get_id(), section: 'System') summary('C++ Compiler Version', cxx.version(), section: 'System') -summary('C++ Compiler Command', cxx.cmd_array(), section: 'System') +summary('C++ Compiler Command', ' '.join(cxx.cmd_array()), section: 'System') summary('Linker', cxx.get_linker_id(), section: 'System') summary('Name', meson.project_name(), section: 'PowerDNS')