]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
pc-bios/dtb/meson: Prefer target name to be outfile, not infile
authorBernhard Beschow <shentey@gmail.com>
Tue, 10 Jun 2025 20:41:28 +0000 (22:41 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 17 Jun 2025 07:54:51 +0000 (09:54 +0200)
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>
pc-bios/dtb/meson.build

index 7a71835bca7175bd0cb41ad722403cad51e8be4d..993032949fe226854e0eb91629baff7363f87411 100644 (file)
@@ -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,