meson: replace deprecated program.path -> program.full_path
To avoid Meson warnings Signed-off-by: Dylan Baker <dylan.c.baker@intel.com> Reviewed-by: Simon Ser <contact@emersion.fr>main
parent
16e6a96505
commit
bd205d133e
|
@ -65,6 +65,6 @@ test(
|
||||||
args : [
|
args : [
|
||||||
'--lib', libdrm_amdgpu,
|
'--lib', libdrm_amdgpu,
|
||||||
'--symbols-file', files('amdgpu-symbols.txt'),
|
'--symbols-file', files('amdgpu-symbols.txt'),
|
||||||
'--nm', prog_nm.path(),
|
'--nm', prog_nm.full_path(),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
@ -266,7 +266,7 @@ test(
|
||||||
args : [
|
args : [
|
||||||
'--lib', libdrm,
|
'--lib', libdrm,
|
||||||
'--symbols-file', files('core-symbols.txt'),
|
'--symbols-file', files('core-symbols.txt'),
|
||||||
'--nm', prog_nm.path(),
|
'--nm', prog_nm.full_path(),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -60,6 +60,6 @@ test(
|
||||||
args : [
|
args : [
|
||||||
'--lib', libdrm_nouveau,
|
'--lib', libdrm_nouveau,
|
||||||
'--symbols-file', files('nouveau-symbols.txt'),
|
'--symbols-file', files('nouveau-symbols.txt'),
|
||||||
'--nm', prog_nm.path(),
|
'--nm', prog_nm.full_path(),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
@ -65,6 +65,6 @@ test(
|
||||||
args : [
|
args : [
|
||||||
'--lib', libdrm_radeon,
|
'--lib', libdrm_radeon,
|
||||||
'--symbols-file', files('radeon-symbols.txt'),
|
'--symbols-file', files('radeon-symbols.txt'),
|
||||||
'--nm', prog_nm.path(),
|
'--nm', prog_nm.full_path(),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue