summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-08-18 20:20:08 -0400
committerRich Felker <dalias@aerifal.cx>2013-08-18 20:20:08 -0400
commit4681aae23a283742d17baff6f1a5692fbf9a376f (patch)
treee6640d5f752109334cc89dd0edfc41dada522444 /Makefile
parenta6b0170a7f51fdea9beec57ae794221290af232b (diff)
downloadmusl-4681aae23a283742d17baff6f1a5692fbf9a376f.tar.gz
re-add logic for ignoring failure of ld.so symlink installation
this was inadvertently removed when switching to the new install.sh.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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),)