From bd205d133e42069ac60013854e75a35f9fb54424 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 1 Sep 2023 13:10:41 -0700 Subject: [PATCH] meson: replace deprecated program.path -> program.full_path To avoid Meson warnings Signed-off-by: Dylan Baker Reviewed-by: Simon Ser --- amdgpu/meson.build | 2 +- meson.build | 2 +- nouveau/meson.build | 2 +- radeon/meson.build | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/amdgpu/meson.build b/amdgpu/meson.build index 20bf6244..679de94d 100644 --- a/amdgpu/meson.build +++ b/amdgpu/meson.build @@ -65,6 +65,6 @@ test( args : [ '--lib', libdrm_amdgpu, '--symbols-file', files('amdgpu-symbols.txt'), - '--nm', prog_nm.path(), + '--nm', prog_nm.full_path(), ], ) diff --git a/meson.build b/meson.build index f883760e..9f6946ae 100644 --- a/meson.build +++ b/meson.build @@ -266,7 +266,7 @@ test( args : [ '--lib', libdrm, '--symbols-file', files('core-symbols.txt'), - '--nm', prog_nm.path(), + '--nm', prog_nm.full_path(), ], ) diff --git a/nouveau/meson.build b/nouveau/meson.build index 350f34c4..71c8f552 100644 --- a/nouveau/meson.build +++ b/nouveau/meson.build @@ -60,6 +60,6 @@ test( args : [ '--lib', libdrm_nouveau, '--symbols-file', files('nouveau-symbols.txt'), - '--nm', prog_nm.path(), + '--nm', prog_nm.full_path(), ], ) diff --git a/radeon/meson.build b/radeon/meson.build index dda3877a..7aa9b705 100644 --- a/radeon/meson.build +++ b/radeon/meson.build @@ -65,6 +65,6 @@ test( args : [ '--lib', libdrm_radeon, '--symbols-file', files('radeon-symbols.txt'), - '--nm', prog_nm.path(), + '--nm', prog_nm.full_path(), ], )