meson: make build system happy by replacing deprecated feature

ExternalProgram.path() is deprecated since 0.55, use
ExternalProgram.full_path() instead.

Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com>
main
Adrián Larumbe 2024-02-15 01:20:02 +00:00
parent 7c5c742de8
commit 01f91aa73d
2 changed files with 2 additions and 2 deletions

View File

@ -61,6 +61,6 @@ test(
args : [ args : [
'--lib', libdrm_etnaviv, '--lib', libdrm_etnaviv,
'--symbols-file', files('etnaviv-symbols.txt'), '--symbols-file', files('etnaviv-symbols.txt'),
'--nm', prog_nm.path(), '--nm', prog_nm.full_path(),
], ],
) )

View File

@ -77,6 +77,6 @@ test(
args : [ args : [
'--lib', libdrm_freedreno, '--lib', libdrm_freedreno,
'--symbols-file', files('freedreno-symbols.txt'), '--symbols-file', files('freedreno-symbols.txt'),
'--nm', prog_nm.path(), '--nm', prog_nm.full_path(),
], ],
) )