diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-01-11 10:58:19 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-01-11 10:58:19 +0000 |
commit | 9d003b2598ee67bd1f1265735a558439d224938a (patch) | |
tree | 74097cd482a24887c66a72c269de601496869630 | |
parent | 3baf9a24c809b686729f778c65f9cf5be72fcd72 (diff) |
Do not use portable (POSIX) 'cp -PRf' but instead use 'cp -dRf' since
busybox does not yet support 'cp -P'
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 \ |