meson: changed deprecated since 0.55 function path() to full_path()

This commit is contained in:
Dmitri Chudinov 2022-06-09 12:22:11 +05:00
parent 919e646ad3
commit a4f5bc660f
4 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@ endif
if meson.is_cross_build()
_edje_cc = find_program('edje_cc', native: true)
edje_cc_path = _edje_cc.path()
edje_cc_path = _edje_cc.full_path()
edje_cc_exe = [_edje_cc]
edje_depends = []
else
@ -94,7 +94,7 @@ edje_codegen = executable('edje_codegen',
if meson.is_cross_build()
_edje_codegen = find_program('edje_codegen', native: true)
edje_codegen_path = _edje_codegen.path()
edje_codegen_path = _edje_codegen.full_path()
edje_codegen_exe = [_edje_codegen]
else
edje_codegen_exe = [env, asan_option, 'EFL_RUN_IN_TREE=1', edje_codegen.full_path()]

View File

@ -255,7 +255,7 @@ elm_prefs_cc = executable('elm_prefs_cc',
if meson.is_cross_build()
_elm_prefs_cc = find_program('elm_prefs_cc', native: true)
elm_prefs_cc_path = _elm_prefs_cc.path()
elm_prefs_cc_path = _elm_prefs_cc.full_path()
elm_prefs_cc_exe = [_elm_prefs_cc]
else
elm_prefs_cc_exe = [env, asan_option, 'EFL_RUN_IN_TREE=1', elm_prefs_cc.full_path()]

View File

@ -23,7 +23,7 @@ eolian_gen_path = eolian_gen_bin.full_path()
if meson.is_cross_build()
_eolian_gen_bin = find_program('eolian_gen', native : true)
eolian_gen_path = _eolian_gen_bin.path()
eolian_gen_path = _eolian_gen_bin.full_path()
else
_eolian_gen_bin = eolian_gen_bin
eolian_gen_path = _eolian_gen_bin.full_path()

View File

@ -73,7 +73,7 @@ foreach option : options_to_check
endif
prog = find_program(_option, required: false)
if prog.found()
set_variable(option+'_bin', prog.path())
set_variable(option+'_bin', prog.full_path())
else
set_variable(option+'_bin', '')
endif