jayji pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a0a957bb7dea3b746c7006e828f1021002e15663
commit a0a957bb7dea3b746c7006e828f1021002e15663 Author: Jean Guyomarc'h <j...@guyomarch.bzh> Date: Thu Mar 9 22:17:11 2017 +0100 edje: make sure the po files are well-copied once --- src/examples/edje/Makefile.am | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/examples/edje/Makefile.am b/src/examples/edje/Makefile.am index 91bb1ca..9a65457 100644 --- a/src/examples/edje/Makefile.am +++ b/src/examples/edje/Makefile.am @@ -86,12 +86,15 @@ EDJE_CC_FLAGS += -beta $(AM_V_EDJ)$(EDJE_CC) $(EDJE_CC_FLAGS) $(SND_DIR) $(MO_DIR) $< $(builddir)/$(@F) text.edj: text.edc - @cp -a $(top_srcdir)/src/examples/edje/en_IN/ $(top_builddir)/src/examples/edje/ || true - @cp -a $(top_srcdir)/src/examples/edje/hi_IN/ $(top_builddir)/src/examples/edje/ || true - @cp -a $(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 + @rm -rf $(top_builddir)/src/examples/edje/en_IN/ + @rm -rf $(top_builddir)/src/examples/edje/hi_IN/ + @rm -rf $(top_builddir)/src/examples/edje/ta_IN/ + @cp -a $(top_srcdir)/src/examples/edje/en_IN/ $(top_builddir)/src/examples/edje/en_IN/ + @cp -a $(top_srcdir)/src/examples/edje/hi_IN/ $(top_builddir)/src/examples/edje/hi_IN/ + @cp -a $(top_srcdir)/src/examples/edje/ta_IN/ $(top_builddir)/src/examples/edje/ta_IN/ + @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/ $(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) --