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>
(cherry picked from commit 7352f948be)
This commit is contained in:
JCWasmx86 2024-04-25 10:32:52 +00:00 committed by Eric Engestrom
parent 0eea740999
commit 235d807e93
2 changed files with 2 additions and 2 deletions

View file

@ -274,7 +274,7 @@
"description": "meson: Fix invalid kwarg name",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "44b080af07f0ba516f0d5519bba86eb7c1ea7da2",
"notes": null

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