re-add logic for ignoring failure of ld.so symlink installation
authorRich Felker <dalias@aerifal.cx>
Mon, 19 Aug 2013 00:20:08 +0000 (20:20 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 19 Aug 2013 00:20:08 +0000 (20:20 -0400)
this was inadvertently removed when switching to the new install.sh.

Makefile

index 829b5f9..aa5aee8 100644 (file)
--- 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),)