edje: use portable cp options
authorJean Guyomarc'h <jean@guyomarch.bzh>
Thu, 9 Mar 2017 20:30:26 +0000 (21:30 +0100)
committerJean Guyomarc'h <jean@guyomarch.bzh>
Thu, 9 Mar 2017 22:16:16 +0000 (23:16 +0100)
The -u option is GNU-specific.

src/examples/edje/Makefile.am

index e34be11..91bb1ca 100644 (file)
@@ -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