]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: drop redundant messages
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 18 Jul 2018 00:29:28 +0000 (09:29 +0900)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 23 Jul 2018 12:03:05 +0000 (14:03 +0200)
The equivalent messages are shown in the last summary.

meson.build
src/boot/efi/meson.build

index a8433000d6fde3f03f30ef3149e95c3a846bdfa1..910e73406fc7c7366fa8cf0276e9cf68ed687f42 100644 (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()
index 8ec1fa7be4d55713e74e33f088743ea6ede321f7..595c9d8a1632eab1c0fd27fd6e5517cbe22fb61a 100644 (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',