summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrián Larumbe <adrian.larumbe@collabora.com>2024-02-15 01:20:02 +0000
committerAdrián Larumbe <adrian.larumbe@collabora.com>2024-02-15 01:20:02 +0000
commit01f91aa73d86e564678bbea439a1e2bdabbedb8d (patch)
tree889a697ef62913322bcac6416e735a0cdf25139c
parent7c5c742de8a8b577654964635f05d7033c92ee53 (diff)
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>
-rw-r--r--etnaviv/meson.build2
-rw-r--r--freedreno/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/etnaviv/meson.build b/etnaviv/meson.build
index 9ccf8696..b9650961 100644
--- a/etnaviv/meson.build
+++ b/etnaviv/meson.build
@@ -61,6 +61,6 @@ test(
args : [
'--lib', libdrm_etnaviv,
'--symbols-file', files('etnaviv-symbols.txt'),
- '--nm', prog_nm.path(),
+ '--nm', prog_nm.full_path(),
],
)
diff --git a/freedreno/meson.build b/freedreno/meson.build
index 5ba1a3f1..1d1bd820 100644
--- a/freedreno/meson.build
+++ b/freedreno/meson.build
@@ -77,6 +77,6 @@ test(
args : [
'--lib', libdrm_freedreno,
'--symbols-file', files('freedreno-symbols.txt'),
- '--nm', prog_nm.path(),
+ '--nm', prog_nm.full_path(),
],
)