diff options
author | Bernhard Beschow <shentey@gmail.com> | 2025-06-10 22:41:28 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-06-17 09:54:51 +0200 |
commit | 6c2888dd0f9b7129943d53cacd6a7b7143a65cfb (patch) | |
tree | 9b522b1bce970f9ddd66c6d0c1e749bb5e3666bd | |
parent | 5d353cce65142440251c014331c2f25f3af5e1b2 (diff) | |
download | qemu-6c2888dd0f9b7129943d53cacd6a7b7143a65cfb.zip qemu-6c2888dd0f9b7129943d53cacd6a7b7143a65cfb.tar.gz qemu-6c2888dd0f9b7129943d53cacd6a7b7143a65cfb.tar.bz2 |
pc-bios/dtb/meson: Prefer target name to be outfile, not infile
Makes this custom_target() usage consistent with other ones in QEMU.
Fixes: 6e0dc9d2a88a ("meson: compile bundled device trees")
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Link: https://lore.kernel.org/r/20250610204131.2862-3-shentey@gmail.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | pc-bios/dtb/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pc-bios/dtb/meson.build b/pc-bios/dtb/meson.build index 7a71835..9930329 100644 --- a/pc-bios/dtb/meson.build +++ b/pc-bios/dtb/meson.build @@ -9,7 +9,7 @@ dtc = find_program('dtc', required: false) if dtc.found() foreach out : dtbs f = fs.replace_suffix(out, '.dts') - custom_target(f, + custom_target(out, build_by_default: have_system, input: files(f), output: out, |