From: Bernhard Beschow Date: Tue, 10 Jun 2025 20:41:28 +0000 (+0200) Subject: pc-bios/dtb/meson: Prefer target name to be outfile, not infile X-Git-Tag: v10.1.0-rc0~48^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c2888dd0f9b7129943d53cacd6a7b7143a65cfb;p=thirdparty%2Fqemu.git 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 Link: https://lore.kernel.org/r/20250610204131.2862-3-shentey@gmail.com Signed-off-by: Paolo Bonzini --- diff --git a/pc-bios/dtb/meson.build b/pc-bios/dtb/meson.build index 7a71835bca7..993032949fe 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,