From 5d5d17c9ab4324e0b055d7ab45cd4d692815c525 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Fri, 29 Nov 2024 22:04:58 -0500 Subject: [PATCH] chore(meson): consistent build log format (#2081) --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e94d07e70f8..c80643f5cb5 100644 --- a/meson.build +++ b/meson.build @@ -20,12 +20,12 @@ if get_option('optimization') == '2' else profile = 'develop' endif -message('The used profile is:', profile) +message('Profile:', profile) # parse compiler options fc = meson.get_compiler('fortran') fc_id = fc.get_id() -message('The fc_id is:', fc_id) +message('Compiler ID:', fc_id) compile_args = [] link_args = []