vulkan: Remove nonexistent output in vk_synchronization_helpers target

I noticed that my NVK build was always LTOing the library twice
(I managed to trace it to the vk_synchronization_helpers change)

This change fixes the double compilation/LTO issue (which should
definitely cut packaging times a bit) 🐸

Fixes: fe12c1c29e ("vulkan: Add some auto-generated synchronization helpers")
Reviewed-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26630>
This commit is contained in:
Echo J 2023-12-11 09:46:59 +02:00 committed by Marge Bot
parent 09ae669fc5
commit 9342635903

View file

@ -222,7 +222,7 @@ vk_physical_device_properties = custom_target(
vk_synchronization_helpers = custom_target(
'vk_synchronization_helpers',
input : [vk_synchronization_helpers_gen, vk_api_xml],
output : ['vk_synchronization_helpers.c', 'vk_synchronization_helpers.h'],
output : 'vk_synchronization_helpers.c',
command : [
prog_python, '@INPUT0@', '--xml', '@INPUT1@',
'--out-c', '@OUTPUT0@',