From 44705c1acb02de7669a6790b289339bc877f93e2 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 6 Mar 2025 15:34:27 -0700 Subject: [PATCH] [fontations] Fix clippy target To build in the build dir --- src/fontations/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fontations/meson.build b/src/fontations/meson.build index 5de59edd9..481db8e29 100644 --- a/src/fontations/meson.build +++ b/src/fontations/meson.build @@ -52,6 +52,8 @@ clippy = custom_target( env: ['OUT_DIR=' + meson.current_build_dir()], command: [ cargo, 'clippy', + ] + cargo_args + [ + '--target-dir', meson.current_build_dir(), '--manifest-path', meson.current_source_dir() / 'Cargo.toml' ], )