diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2025-05-08 15:13:38 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-05-12 16:08:24 +0200 |
commit | 911115838b29f222e47e5942b3182caf08ed08fd (patch) | |
tree | 77e7bd0df536f477c9afe4b070f1b9a95ee44621 | |
parent | e3c426cb78d47b42af9ab296408115cab20f2060 (diff) | |
download | qemu-911115838b29f222e47e5942b3182caf08ed08fd.zip qemu-911115838b29f222e47e5942b3182caf08ed08fd.tar.gz qemu-911115838b29f222e47e5942b3182caf08ed08fd.tar.bz2 |
meson: remove unnecessary dependencies from specific_ss
All dependencies that are in common_ss (which includes system_ss) automatically
have their include path added when building the target-specific files. So the
hack in ui/meson.build is not needed anymore since commit 727bb5b477e ("meson:
pick libfdt from common_ss when building target-specific files", 2024-05-10);
drop it.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | ui/meson.build | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/meson.build b/ui/meson.build index 35fb04c..6371422 100644 --- a/ui/meson.build +++ b/ui/meson.build @@ -1,7 +1,4 @@ system_ss.add(pixman) -specific_ss.add(when: ['CONFIG_SYSTEM_ONLY'], if_true: pixman) # for the include path -specific_ss.add(when: ['CONFIG_SYSTEM_ONLY'], if_true: opengl) # for the include path - system_ss.add(png) system_ss.add(files( 'clipboard.c', |