From 34c69b2868012c36bc52d0d8b61c0af3d34ef36b Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 5 Oct 2024 08:55:16 -0400 Subject: [PATCH] build: Don't use / in target names It is unnecessary, and meson doesn't like it. --- tools/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/meson.build b/tools/meson.build index a5cfd739f0..c4c28ffbcf 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -11,7 +11,7 @@ if win32_enabled # compile_resources doesn't like to consume targets with multiple outputs, # and the xxx.exe.manifest and xxx.rc are tied together uac_rc = custom_target( - 'tools/@0@.rc'.format(uac_exe_name), + '@0@-rc'.format(uac_exe_name), output: ['@0@.rc'.format(uac_exe_name)], command: [gen_uac_manifest, '-p=@0@'.format(uac_exe_pkg),