From 6da232debf83fa3397699dd54996b767b6f33447 Mon Sep 17 00:00:00 2001 From: "Tom A. Wagner" Date: Fri, 28 Jan 2022 13:48:10 +0100 Subject: [PATCH] meson: Fix incorrect output file name This fixes a typo from 96c61e43 that caused the binary to be generated with the wrong name. --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 79d6855..1df179f 100644 --- a/src/meson.build +++ b/src/meson.build @@ -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@', ], )