meson: drop redundant messages

The equivalent messages are shown in the last summary.
This commit is contained in:
Yu Watanabe 2018-07-18 09:29:28 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent fbb48d4c66
commit a0cb8078b1
2 changed files with 0 additions and 6 deletions

View File

@ -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()

View File

@ -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',