meson: remove dead dictionary access
The "link_depends" key has not been used since commitc46f76d158
("meson: specify fuzz linker script as a project arg", 2020-09-08), and even before that it was only used for fork-fuzzing which we removed in commitd2e6f9272d
("fuzz: remove fork-fuzzing scaffolding", 2023-02-16). So, remove it for a very small simplification of meson.build. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
732810235f
commit
05007258f0
@ -3951,7 +3951,7 @@ foreach target : target_dirs
|
||||
c_args: c_args,
|
||||
dependencies: arch_deps + deps + exe['dependencies'],
|
||||
objects: lib.extract_all_objects(recursive: true),
|
||||
link_depends: [block_syms, qemu_syms] + exe.get('link_depends', []),
|
||||
link_depends: [block_syms, qemu_syms],
|
||||
link_args: link_args,
|
||||
win_subsystem: exe['win_subsystem'])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user