This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/devilhorns/apos
in repository efl.
View the commit online.
commit 3f423885ae2d1a15848729bed483e19bfe74ccd4
Author: Vincent Torri <vto...@outlook.fr>
AuthorDate: Wed Apr 19 05:56:23 2023 +0200
edje, build: don't use fullpath(), this breaks compilation on Windows for meson >= 0.54.2
---
src/bin/edje/meson.build | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/bin/edje/meson.build b/src/bin/edje/meson.build
index e715571852..4d2a164dde 100644
--- a/src/bin/edje/meson.build
+++ b/src/bin/edje/meson.build
@@ -43,9 +43,9 @@ if meson.is_cross_build()
edje_depends = []
else
if sys_windows == true
- edje_cc_exe = [edje_cc.full_path()]
+ edje_cc_exe = [edje_cc]
else
- edje_cc_exe = [env, asan_option, 'EFL_RUN_IN_TREE=1', edje_cc.full_path()]
+ edje_cc_exe = [env, asan_option, 'EFL_RUN_IN_TREE=1', edje_cc]
endif
edje_depends = [edje_cc, epp, evas_engine_buffer_mod, embryo_cc]
endif
@@ -97,7 +97,7 @@ if meson.is_cross_build()
edje_codegen_path = _edje_codegen.path()
edje_codegen_exe = [_edje_codegen]
else
- edje_codegen_exe = [env, asan_option, 'EFL_RUN_IN_TREE=1', edje_codegen.full_path()]
+ edje_codegen_exe = [env, asan_option, 'EFL_RUN_IN_TREE=1', edje_codegen]
endif
edje_pick = executable('edje_pick',
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.