From 4681aae23a283742d17baff6f1a5692fbf9a376f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 18 Aug 2013 20:20:08 -0400 Subject: re-add logic for ignoring failure of ld.so symlink installation this was inadvertently removed when switching to the new install.sh. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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),) -- cgit v1.2.1