meson: Fix incorrect output file name

This fixes a typo from 96c61e43 that caused the binary to be generated with the wrong name.
This commit is contained in:
Tom A. Wagner
2022-01-28 13:48:10 +01:00
parent 96c61e43d2
commit 6da232debf

View File

@@ -26,6 +26,6 @@ custom_target(
cargo, 'build',
cargo_options,
'&&',
'cp', 'src' / rust_target / meson.project_name(), '@OUTPUT',
'cp', 'src' / rust_target / meson.project_name(), '@OUTPUT@',
],
)