fix regression in creation of ldso symlink

DESTDIR was wrongly included in the symlink contents.
This commit is contained in:
Rich Felker 2013-08-31 11:36:56 -04:00
parent 7cc49f98a2
commit 9ff8ed463c
1 changed files with 1 additions and 1 deletions

View File

@ -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),)