stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8a933c28d5ba8028f58ad002b0a61775b62109c5
commit 8a933c28d5ba8028f58ad002b0a61775b62109c5 Author: Stefan Schmidt <[email protected]> Date: Tue Jul 26 00:08:33 2016 +0200 examples: edje: make sure we handle the various corner cases for the po files Delete the earlier copied files only. Handles out of tree and in tree builds. --- src/examples/edje/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/examples/edje/Makefile.am b/src/examples/edje/Makefile.am index bf79a4b..70bbb17 100644 --- a/src/examples/edje/Makefile.am +++ b/src/examples/edje/Makefile.am @@ -249,6 +249,11 @@ examples: $(EXTRA_PROGRAMS) $(EDJS) clean-local: rm -f $(EXTRA_PROGRAMS) $(EDJS) $(CODEGEN_GENERATED) + if [ $(top_builddir)/ != $(top_srcdir)/ ]; then \ + rm -f $(top_builddir)/src/examples/edje/hi_IN/domain_name.po; \ + rm -f $(top_builddir)/src/examples/edje/ta_IN/domain_name.mo; \ + rm -f $(top_builddir)/src/examples/edje/en_IN/domain_name.po; \ + fi install-examples: $(EDJS) $(MKDIR_P) $(DESTDIR)$(datadir)/edje/examples --
