From: Yu Watanabe Date: Wed, 18 Jul 2018 00:29:28 +0000 (+0900) Subject: meson: drop redundant messages X-Git-Tag: v240~922 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a0cb8078b10d7dddd9f77d8a306033b35acf4c83;p=thirdparty%2Fsystemd.git meson: drop redundant messages The equivalent messages are shown in the last summary. --- diff --git a/meson.build b/meson.build index a8433000d6f..910e73406fc 100644 --- a/meson.build +++ b/meson.build @@ -655,7 +655,6 @@ endif system_uid_max = system_uid_max.to_int() conf.set('SYSTEM_UID_MAX', system_uid_max) substs.set('systemuidmax', system_uid_max) -message('maximum system UID is @0@'.format(system_uid_max)) system_gid_max = get_option('system-gid-max') if system_gid_max == '' @@ -670,7 +669,6 @@ endif system_gid_max = system_gid_max.to_int() conf.set('SYSTEM_GID_MAX', system_gid_max) substs.set('systemgidmax', system_gid_max) -message('maximum system GID is @0@'.format(system_gid_max)) dynamic_uid_min = get_option('dynamic-uid-min').to_int() dynamic_uid_max = get_option('dynamic-uid-max').to_int() diff --git a/src/boot/efi/meson.build b/src/boot/efi/meson.build index 8ec1fa7be4d..595c9d8a163 100644 --- a/src/boot/efi/meson.build +++ b/src/boot/efi/meson.build @@ -94,10 +94,6 @@ if have_gnu_efi endif endif - message('efi-libdir: "@0@"'.format(efi_libdir)) - message('efi-ldsdir: "@0@"'.format(efi_ldsdir)) - message('efi-includedir: "@0@"'.format(efi_incdir)) - compile_args = ['-Wall', '-Wextra', '-std=gnu90',