diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2023-09-01 13:10:41 -0700 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-10-20 05:21:01 +0000 |
commit | bd205d133e42069ac60013854e75a35f9fb54424 (patch) | |
tree | 2b33fa7e4dc037ac00062ee8e924c1dca1d469c9 | |
parent | 16e6a965051fae4d5142e9f16c47bb6bd3dd6f59 (diff) |
meson: replace deprecated program.path -> program.full_path
To avoid Meson warnings
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
-rw-r--r-- | amdgpu/meson.build | 2 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | nouveau/meson.build | 2 | ||||
-rw-r--r-- | 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(), ], ) |