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(), ], )