From: Rich Felker Date: Mon, 19 Aug 2013 00:20:08 +0000 (-0400) Subject: re-add logic for ignoring failure of ld.so symlink installation X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=4681aae23a283742d17baff6f1a5692fbf9a376f;p=musl re-add logic for ignoring failure of ld.so symlink installation this was inadvertently removed when switching to the new install.sh. --- diff --git a/Makefile b/Makefile index 829b5f93..aa5aee8f 100644 --- a/Makefile +++ b/Makefile @@ -157,7 +157,7 @@ $(DESTDIR)$(includedir)/%: include/% $(INSTALL) -D -m 644 $< $@ $(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(libdir)/libc.so - $(INSTALL) -D -l $< $@ + $(INSTALL) -D -l $< $@ || true install-libs: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(if $(SHARED_LIBS),$(DESTDIR)$(LDSO_PATHNAME),)