stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=df09336286768a615c7ffe30a7d052f7f72495ec
commit df09336286768a615c7ffe30a7d052f7f72495ec Author: Mike Blumenkrantz <[email protected]> Date: Wed Aug 15 08:38:19 2018 -0400 build: remove incorrect use of DEPENDENCIES for non-library file if this is ever evaluated then it will trigger a build failure since it is not a rule in this makefile which can ever be run fix T6828 Differential Revision: https://phab.enlightenment.org/D6838 --- src/Makefile_Elementary.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile_Elementary.am b/src/Makefile_Elementary.am index c83cc6efb3..784710e41e 100644 --- a/src/Makefile_Elementary.am +++ b/src/Makefile_Elementary.am @@ -1576,7 +1576,7 @@ tests_elementary_elm_suite_CPPFLAGS = \ @ELEMENTARY_CFLAGS@ tests_elementary_elm_suite_LDADD = @CHECK_LIBS@ @USE_ELEMENTARY_LIBS@ -tests_elementary_elm_suite_DEPENDENCIES = @USE_ELEMENTARY_INTERNAL_LIBS@ $(top_builddir)/data/elementary/objects/test.edj +tests_elementary_elm_suite_DEPENDENCIES = @USE_ELEMENTARY_INTERNAL_LIBS@ tests_elementary_efl_ui_suite_SOURCES = \ tests/elementary/efl_ui_suite.c @@ -1595,7 +1595,7 @@ tests_elementary_efl_ui_suite_CPPFLAGS = \ @ELEMENTARY_CFLAGS@ tests_elementary_efl_ui_suite_LDADD = @CHECK_LIBS@ @USE_ELEMENTARY_LIBS@ -tests_elementary_efl_ui_suite_DEPENDENCIES = @USE_ELEMENTARY_INTERNAL_LIBS@ $(top_builddir)/data/elementary/objects/test.edj +tests_elementary_efl_ui_suite_DEPENDENCIES = @USE_ELEMENTARY_INTERNAL_LIBS@ endif if HAVE_LUA_BINDINGS --
