From: Jean Guyomarc'h Date: Thu, 9 Mar 2017 20:30:26 +0000 (+0100) Subject: edje: use portable cp options X-Git-Tag: upstream/1.20.0~1765 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d2c6189fa6bfab859400642df173cdd24419ab5;p=platform%2Fupstream%2Fefl.git edje: use portable cp options The -u option is GNU-specific. --- diff --git a/src/examples/edje/Makefile.am b/src/examples/edje/Makefile.am index e34be11..91bb1ca 100644 --- a/src/examples/edje/Makefile.am +++ b/src/examples/edje/Makefile.am @@ -86,9 +86,9 @@ 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/ || 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 + @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