meson: Fix invalid kwarg name

Introduced in !28576

Fixes:  44b080af ("meson: implement split-debug")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28924>
This commit is contained in:
JCWasmx86 2024-04-25 10:32:52 +00:00 committed by Marge Bot
parent 8248cc0bf4
commit 7352f948be

View File

@ -973,7 +973,7 @@ with_split_debug = get_option('split-debug') \
error_message : 'split-debug requires the linker argument -Wl,--gdb-index')
if with_split_debug.allowed() and get_option('debug')
add_project_arguments('-gsplit-dwarf', langauge : ['c', 'cpp'])
add_project_arguments('-gsplit-dwarf', language : ['c', 'cpp'])
add_project_link_arguments('-Wl,--gdb-index', language : ['c', 'cpp'])
endif