From: Rich Felker Date: Sat, 31 Aug 2013 15:36:56 +0000 (-0400) Subject: fix regression in creation of ldso symlink X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=9ff8ed463caa86cb5e81419d8eb3bfb56e90f03c;p=musl fix regression in creation of ldso symlink DESTDIR was wrongly included in the symlink contents. --- diff --git a/Makefile b/Makefile index aa5aee8f..7ac58d48 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 $< $@ || true + $(INSTALL) -D -l $(libdir)/libc.so $@ || true install-libs: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(if $(SHARED_LIBS),$(DESTDIR)$(LDSO_PATHNAME),)