summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-01-11 10:58:19 +0000
committerEric Andersen <andersen@codepoet.org>2005-01-11 10:58:19 +0000
commit9d003b2598ee67bd1f1265735a558439d224938a (patch)
tree74097cd482a24887c66a72c269de601496869630 /Makefile
parent3baf9a24c809b686729f778c65f9cf5be72fcd72 (diff)
Do not use portable (POSIX) 'cp -PRf' but instead use 'cp -dRf' since
busybox does not yet support 'cp -P'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ec2c462cd..2b2dd84d5 100644
--- a/Makefile
+++ b/Makefile
@@ -232,7 +232,7 @@ ifeq ($(strip $(HAVE_SHARED)),y)
$(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
$(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
$(PREFIX)$(RUNTIME_PREFIX)lib
- cp -PRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
+ cp -dRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
set -x -e; \
$(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
@@ -347,7 +347,7 @@ distclean: clean
release: distclean
cd ..; \
$(RM) -r uClibc-$(VERSION); \
- cp -PRf uClibc uClibc-$(VERSION); \
+ cp -dRf uClibc uClibc-$(VERSION); \
find uClibc-$(VERSION)/ -type f \
-name .\#* -exec $(RM) -r {} \; ; \
find uClibc-$(VERSION)/ -type d \