From: Jerome St-Louis Date: Wed, 3 Aug 2016 03:50:22 +0000 (-0400) Subject: tarball/crossplatform.mk: cp/cpr using -pP/-pPR as more standard options working... X-Git-Tag: 0.44.15~57 X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=sdk;a=commitdiff_plain;h=51310618f747679dbd3e4c27cff5c6c6e3483e7c;hp=0e83a12f7aece981cf49a45847e0821e325e3069 tarball/crossplatform.mk: cp/cpr using -pP/-pPR as more standard options working on OS X --- diff --git a/crossplatform.mk b/crossplatform.mk index 80f7bd3..4719c01 100644 --- a/crossplatform.mk +++ b/crossplatform.mk @@ -305,8 +305,8 @@ else nullerror = 2>/dev/null echo = $(if $(1),echo "$(1)") touch = $(if $(1),touch $(1)) - cp = $(if $(1),cp -df$(if $(SILENT_IS_ON),,v) $(1) $(2)) - cpr = $(if $(1),cp -dfr$(if $(SILENT_IS_ON),,v) $(1) $(2)) + cp = $(if $(1),cp -pP$(if $(SILENT_IS_ON),,v) $(1) $(2)) + cpr = $(if $(1),cp -pPR$(if $(SILENT_IS_ON),,v) $(1) $(2)) rm = $(if $(1),-rm -f$(if $(SILENT_IS_ON),,v) $(1)) rmr = $(if $(1),-rm -fr$(if $(SILENT_IS_ON),,v) $(1)) mkdir = $(if $(1),-mkdir -p$(if $(SILENT_IS_ON),,v) $(1))