diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-05-16 18:05:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-05-16 18:05:41 +0000 |
commit | 34f4d314c55eb53e272c1b5ac8c13e0ef246a9bd (patch) | |
tree | 32aac17f52024679f314e027460da66e6fd90ec7 /Makefile.in | |
parent | 1652ec366d5294b98966e11ea8ebf3a50b6c558a (diff) |
use cp -P instead of cp -d as pointed out by David DeHaven
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 1e963515c..1404ca6b3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -253,7 +253,7 @@ ifeq ($(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 -dRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib + cp -PRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib @if [ -x lib/$(UCLIBC_LDSO_NAME)-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \ set -e; \ $(SHELL_SET_X); \ |