stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e72c446c8f5265b479e602e974a4dfb192a8773d
commit e72c446c8f5265b479e602e974a4dfb192a8773d Author: Stefan Schmidt <[email protected]> Date: Thu Oct 23 13:53:40 2014 +0200 evas/cserve2_slave: Fix build race with linking to eo but not depending on it. I have not been able to reproduce this myself but I have seen a build log where the binary tries to link to libeo and fails due to the missing file. A similar problem was "fixed" in 0e4b847deb79c957dbc042ea0c6a98282aead6e0, but this really makes me wonder where the linking against eo comes from for cserve2 which is not using eo as far as I can see. --- src/Makefile_Evas.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile_Evas.am b/src/Makefile_Evas.am index 6cbbe0f..b787bf0 100644 --- a/src/Makefile_Evas.am +++ b/src/Makefile_Evas.am @@ -1273,7 +1273,7 @@ bin_evas_evas_cserve2_slave_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ @EVAS_CFLAGS@ bin_evas_evas_cserve2_slave_LDADD = @EVAS_CSERVE2_SLAVE_LIBS@ @USE_EINA_LIBS@ -bin_evas_evas_cserve2_slave_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ +bin_evas_evas_cserve2_slave_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ @USE_EO_INTERNAL_LIBS@ bin_evas_evas_cserve2_slave_LDFLAGS = -export-dynamic bin_evas_dummy_slave_SOURCES = \ --
