From 9d003b2598ee67bd1f1265735a558439d224938a Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 11 Jan 2005 10:58:19 +0000 Subject: Do not use portable (POSIX) 'cp -PRf' but instead use 'cp -dRf' since busybox does not yet support 'cp -P' --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 \ -- cgit v1.2.3