From 57bb6fac0455d70dcd634ed1641265a7087c90de Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Wed, 22 Jul 2015 17:30:47 +0200 Subject: [PATCH] Revert "Eolian: fix eolian helper for windows." This reverts commit 60b473d949c2582695a0ed7e67dc2e2c32eeee1b. It breaks our mingw cross build setup we are using on jenkins. In summary it silently fails to use eolian_gen.exe while it should use the linux native eolian_gen and thus does not generate the c and h files from the eo ones. See the ml for details or look at the error here: https://build.enlightenment.org/job/changely_efl_mingw_x86_64/2115/console --- src/Makefile_Eolian_Helper.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile_Eolian_Helper.am b/src/Makefile_Eolian_Helper.am index b46ef02053..34ea60fc3a 100644 --- a/src/Makefile_Eolian_Helper.am +++ b/src/Makefile_Eolian_Helper.am @@ -1,6 +1,6 @@ if HAVE_EOLIAN_GEN -EOLIAN_GEN = @eolian_gen@${EXEEXT} -_EOLIAN_GEN_DEP = @eolian_gen@${EXEEXT} +EOLIAN_GEN = @eolian_gen@ +_EOLIAN_GEN_DEP = @eolian_gen@ else EOLIAN_GEN = EFL_RUN_IN_TREE=1 $(top_builddir)/src/bin/eolian/eolian_gen${EXEEXT} _EOLIAN_GEN_DEP = bin/eolian/eolian_gen${EXEEXT}