tarball/crossplatform.mk: Removing cp/cpr -p flag breaking build on Linux/NTFS
authorJerome St-Louis <jerome@ecere.com>
Wed, 3 Aug 2016 04:45:42 +0000 (00:45 -0400)
committerJerome St-Louis <jerome@ecere.com>
Wed, 3 Aug 2016 04:45:42 +0000 (00:45 -0400)
crossplatform.mk

index 4719c01..fe87fd7 100644 (file)
@@ -305,8 +305,8 @@ else
    nullerror = 2>/dev/null
    echo = $(if $(1),echo "$(1)")
    touch = $(if $(1),touch $(1))
-   cp = $(if $(1),cp -pP$(if $(SILENT_IS_ON),,v) $(1) $(2))
-   cpr = $(if $(1),cp -pPR$(if $(SILENT_IS_ON),,v) $(1) $(2))
+   cp = $(if $(1),cp -P$(if $(SILENT_IS_ON),,v) $(1) $(2))
+   cpr = $(if $(1),cp -PR$(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))