tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1d79ce75ffd13074e5a5010132d20905eb0bdbbb
commit 1d79ce75ffd13074e5a5010132d20905eb0bdbbb Author: Tom Hacohen <t...@stosb.com> Date: Fri Mar 7 09:50:13 2014 +0000 Evas line: Fix out of source builds. The build system only adds top lib dir to include path, so we have to specifically put the path there. This should probably be fixed, so we can drop the canvas dir prefix in our includes altogether, but until then, this is needed. --- src/lib/evas/canvas/evas_object_line.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/evas/canvas/evas_object_line.c b/src/lib/evas/canvas/evas_object_line.c index 55dd025..a781ef5 100644 --- a/src/lib/evas/canvas/evas_object_line.c +++ b/src/lib/evas/canvas/evas_object_line.c @@ -455,4 +455,4 @@ evas_object_line_coords_recalc(Evas_Object *eo_obj EINA_UNUSED, o->cur.cache.object.h = obj->cur->geometry.h; } -#include "evas_line.eo.c" \ No newline at end of file +#include "canvas/evas_line.eo.c" --