summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoaquim Monteiro <joaquim.monteiro@protonmail.com>2024-03-28 23:51:52 +0000
committerJoaquim Monteiro <joaquim.monteiro@protonmail.com>2024-03-29 10:23:52 +0000
commitfbb83f74d69086d59acb33a21e7d4f204d341877 (patch)
tree2cdcfa4dceda19a8a8e2d6fb6c79ae64d0603d05
parentc7c3c14bfc8286f17df1845a99ae17e5fc1c8cb7 (diff)
meson: Replace usages of deprecated ExternalProgram.path()
!347 fixed some of these, but not all. Signed-off-by: Joaquim Monteiro <joaquim.monteiro@protonmail.com>
-rw-r--r--exynos/meson.build2
-rw-r--r--intel/meson.build2
-rw-r--r--omap/meson.build2
-rw-r--r--tegra/meson.build2
4 files changed, 4 insertions, 4 deletions
diff --git a/exynos/meson.build b/exynos/meson.build
index 6b4fe1e9..c87be6b1 100644
--- a/exynos/meson.build
+++ b/exynos/meson.build
@@ -56,6 +56,6 @@ test(
args : [
'--lib', libdrm_exynos,
'--symbols-file', files('exynos-symbols.txt'),
- '--nm', prog_nm.path(),
+ '--nm', prog_nm.full_path(),
],
)
diff --git a/intel/meson.build b/intel/meson.build
index 4af2a357..e609449c 100644
--- a/intel/meson.build
+++ b/intel/meson.build
@@ -104,6 +104,6 @@ test(
args : [
'--lib', libdrm_intel,
'--symbols-file', files('intel-symbols.txt'),
- '--nm', prog_nm.path(),
+ '--nm', prog_nm.full_path(),
],
)
diff --git a/omap/meson.build b/omap/meson.build
index eebd1420..8856d4ab 100644
--- a/omap/meson.build
+++ b/omap/meson.build
@@ -56,6 +56,6 @@ test(
args : [
'--lib', libdrm_omap,
'--symbols-file', files('omap-symbols.txt'),
- '--nm', prog_nm.path(),
+ '--nm', prog_nm.full_path(),
],
)
diff --git a/tegra/meson.build b/tegra/meson.build
index 5325ed74..11ce217b 100644
--- a/tegra/meson.build
+++ b/tegra/meson.build
@@ -59,6 +59,6 @@ test(
args : [
'--lib', libdrm_tegra,
'--symbols-file', files('tegra-symbols.txt'),
- '--nm', prog_nm.path(),
+ '--nm', prog_nm.full_path(),
],
)