summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-03-07 12:07:13 +0000
committerEric Andersen <andersen@codepoet.org>2003-03-07 12:07:13 +0000
commita2a493671ebbb9728d09eb99f0b8b3e0da5e88f8 (patch)
treef355213b9b64ea8b53af7bad830220af05a310fe /Makefile
parent54e3971c38cb402757c185f3dd7ca3c3b8114630 (diff)
Patch from Stefan Allius:
a make install_target stops if we have some sysmlinks in the destination target. This little patch force to install over a previous installed uClibc version,so we will allways get a consistent uClibc installation.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7e6f73247..752a475f0 100644
--- a/Makefile
+++ b/Makefile
@@ -288,7 +288,7 @@ ifeq ($(strip $(HAVE_SHARED)),y)
install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin
install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
$(PREFIX)$(TARGET_PREFIX)/lib
- cp -a lib/*.so.* $(PREFIX)$(TARGET_PREFIX)/lib
+ cp -af lib/*.so.* $(PREFIX)$(TARGET_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 \