meson: replace deprecated program.path -> program.full_path
authorDylan Baker <dylan@pnwbakers.com>
Fri, 1 Sep 2023 20:10:41 +0000 (13:10 -0700)
committerSimon Ser <contact@emersion.fr>
Fri, 20 Oct 2023 05:21:01 +0000 (05:21 +0000)
To avoid Meson warnings

Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
amdgpu/meson.build
meson.build
nouveau/meson.build
radeon/meson.build

index 20bf624..679de94 100644 (file)
@@ -65,6 +65,6 @@ test(
   args : [
     '--lib', libdrm_amdgpu,
     '--symbols-file', files('amdgpu-symbols.txt'),
-    '--nm', prog_nm.path(),
+    '--nm', prog_nm.full_path(),
   ],
 )
index f883760..9f6946a 100644 (file)
@@ -266,7 +266,7 @@ test(
   args : [
     '--lib', libdrm,
     '--symbols-file', files('core-symbols.txt'),
-    '--nm', prog_nm.path(),
+    '--nm', prog_nm.full_path(),
   ],
 )
 
index 350f34c..71c8f55 100644 (file)
@@ -60,6 +60,6 @@ test(
   args : [
     '--lib', libdrm_nouveau,
     '--symbols-file', files('nouveau-symbols.txt'),
-    '--nm', prog_nm.path(),
+    '--nm', prog_nm.full_path(),
   ],
 )
index dda3877..7aa9b70 100644 (file)
@@ -65,6 +65,6 @@ test(
   args : [
     '--lib', libdrm_radeon,
     '--symbols-file', files('radeon-symbols.txt'),
-    '--nm', prog_nm.path(),
+    '--nm', prog_nm.full_path(),
   ],
 )