stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=7cc8f085b86e7172155912b53c423ba8990a6d60
commit 7cc8f085b86e7172155912b53c423ba8990a6d60 Author: Stefan Schmidt <[email protected]> Date: Fri Feb 10 10:55:19 2017 +0100 build: add mapping between ecore_file and ecore-file for pkgconfig files elua.pc was depending on a ecore_file pc file it is named ecore-file. We have mapping for similar cases. This one was just forgotten it seems. Fixes T5075 --- m4/efl.m4 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m4/efl.m4 b/m4/efl.m4 index 73d53a3..7c2fc41 100644 --- a/m4/efl.m4 +++ b/m4/efl.m4 @@ -180,6 +180,9 @@ case "m4_defn([DOWNOTHER])" in ecore_sdl) depname="ecore-sdl" ;; + ecore_file) + depname="ecore-file" + ;; esac requirements_pc_[]m4_defn([DOWNEFL])="${depname} >= ${PACKAGE_VERSION} ${requirements_pc_[][]m4_defn([DOWNEFL])}" requirements_cflags_[]m4_defn([DOWNEFL])="-I\$(top_srcdir)/src/lib/${libdirname} -I\$(top_builddir)/src/lib/${libdirname} ${requirements_cflags_[][]m4_defn([DOWNEFL])}" --
