[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 6/6] meson: remove dead dictionary access
From: |
Paolo Bonzini |
Subject: |
[PULL 6/6] meson: remove dead dictionary access |
Date: |
Wed, 20 Mar 2024 11:32:13 +0100 |
The "link_depends" key has not been used since commit c46f76d1586
("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 commit d2e6f9272d3 ("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>
---
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index b375248a761..c9c3217ba4b 100644
--- a/meson.build
+++ b/meson.build
@@ -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'])
--
2.44.0
- [PULL 0/6] QEMU bug fixes for 20240320, Paolo Bonzini, 2024/03/20
- [PULL 1/6] target/i386: fix direction of "32-bit MMU" test, Paolo Bonzini, 2024/03/20
- [PULL 4/6] target/i386: Revert monitor_puts() in do_inject_x86_mce(), Paolo Bonzini, 2024/03/20
- [PULL 5/6] tests/plugins: fix use-after-free bug, Paolo Bonzini, 2024/03/20
- [PULL 3/6] vl: do not assert if sev-guest is used together with TCG, Paolo Bonzini, 2024/03/20
- [PULL 6/6] meson: remove dead dictionary access,
Paolo Bonzini <=
- [PULL 2/6] vl: convert qemu_machine_creation_done() to Error **, Paolo Bonzini, 2024/03/20
- Re: [PULL 0/6] QEMU bug fixes for 20240320, Peter Maydell, 2024/03/20