diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-08-18 20:20:08 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-08-18 20:20:08 -0400 |
commit | 4681aae23a283742d17baff6f1a5692fbf9a376f (patch) | |
tree | e6640d5f752109334cc89dd0edfc41dada522444 | |
parent | a6b0170a7f51fdea9beec57ae794221290af232b (diff) | |
download | musl-4681aae23a283742d17baff6f1a5692fbf9a376f.tar.gz musl-4681aae23a283742d17baff6f1a5692fbf9a376f.tar.xz musl-4681aae23a283742d17baff6f1a5692fbf9a376f.zip |
re-add logic for ignoring failure of ld.so symlink installation
this was inadvertently removed when switching to the new install.sh.
-rw-r--r-- | Makefile | 2 |
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),) |