diff options
author | Joaquim Monteiro <joaquim.monteiro@protonmail.com> | 2024-03-28 23:51:52 +0000 |
---|---|---|
committer | Joaquim Monteiro <joaquim.monteiro@protonmail.com> | 2024-03-29 10:23:52 +0000 |
commit | fbb83f74d69086d59acb33a21e7d4f204d341877 (patch) | |
tree | 2cdcfa4dceda19a8a8e2d6fb6c79ae64d0603d05 | |
parent | c7c3c14bfc8286f17df1845a99ae17e5fc1c8cb7 (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.build | 2 | ||||
-rw-r--r-- | intel/meson.build | 2 | ||||
-rw-r--r-- | omap/meson.build | 2 | ||||
-rw-r--r-- | tegra/meson.build | 2 |
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(), ], ) |