From: Jan Janssen Date: Wed, 14 Jun 2023 14:10:55 +0000 (+0200) Subject: meson: Use build_tgt.name() X-Git-Tag: v254-rc1~203^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=816df466a7ea2d20b10a59253c38fb29c55be955;p=thirdparty%2Fsystemd.git meson: Use build_tgt.name() --- diff --git a/src/boot/efi/meson.build b/src/boot/efi/meson.build index 68c19fbcc9b..a963ce12d16 100644 --- a/src/boot/efi/meson.build +++ b/src/boot/efi/meson.build @@ -349,8 +349,7 @@ foreach archspec : efi_archspecs endforeach foreach efi_elf_binary : efi_elf_binaries - # FIXME: Use build_tgt.name() with meson >= 0.54.0 - name = fs.name(efi_elf_binary.full_path()).split('.')[0] + name = efi_elf_binary.name() name += name.startswith('systemd-boot') ? '.efi' : '.efi.stub' # For the addon, given it's empty, we need to explicitly reserve space in the header to account for # the sections that ukify will add.