diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-03-07 12:07:13 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-03-07 12:07:13 +0000 |
commit | a2a493671ebbb9728d09eb99f0b8b3e0da5e88f8 (patch) | |
tree | f355213b9b64ea8b53af7bad830220af05a310fe | |
parent | 54e3971c38cb402757c185f3dd7ca3c3b8114630 (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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |