raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3a77d5bc20d08a79af30c03c17eec46a244db621
commit 3a77d5bc20d08a79af30c03c17eec46a244db621 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Jul 26 14:21:21 2016 +0900 edje examples - when you cp also just assume success if same file fix makefiles for examples.... more @fix --- src/examples/edje/Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/examples/edje/Makefile.am b/src/examples/edje/Makefile.am index 46232f1..bf79a4b 100644 --- a/src/examples/edje/Makefile.am +++ b/src/examples/edje/Makefile.am @@ -80,12 +80,12 @@ EDJE_CC_FLAGS += -beta $(AM_V_EDJ)$(EDJE_CC) $(EDJE_CC_FLAGS) $(SND_DIR) $(MO_DIR) $< $(builddir)/$(@F) text.edj: text.edc - @cp -ua $(top_srcdir)/src/examples/edje/en_IN/ $(top_builddir)/src/examples/edje/ - @cp -ua $(top_srcdir)/src/examples/edje/hi_IN/ $(top_builddir)/src/examples/edje/ - @cp -ua $(top_srcdir)/src/examples/edje/ta_IN/ $(top_builddir)/src/examples/edje/ - @chmod -R +w $(top_builddir)/src/examples/edje/en_IN/ - @chmod -R +w $(top_builddir)/src/examples/edje/hi_IN/ - @chmod -R +w $(top_builddir)/src/examples/edje/ta_IN/ + @cp -ua $(top_srcdir)/src/examples/edje/en_IN/ $(top_builddir)/src/examples/edje/ || true + @cp -ua $(top_srcdir)/src/examples/edje/hi_IN/ $(top_builddir)/src/examples/edje/ || true + @cp -ua $(top_srcdir)/src/examples/edje/ta_IN/ $(top_builddir)/src/examples/edje/ || true + @chmod -R +w $(top_builddir)/src/examples/edje/en_IN/ || true + @chmod -R +w $(top_builddir)/src/examples/edje/hi_IN/ || true + @chmod -R +w $(top_builddir)/src/examples/edje/ta_IN/ || true $(AM_V_EDJ)$(EDJE_CC) $(EDJE_CC_FLAGS) $(SND_DIR) $(MO_DIR) $(top_srcdir)/src/examples/edje/text.edc $(top_builddir)/src/examples/edje/text.edj EDJS = $(EDCS:%.edc=%.edj) --
