fix regression in creation of ldso symlink

DESTDIR was wrongly included in the symlink contents.
diff --git a/Makefile b/Makefile
index aa5aee8..7ac58d4 100644
--- a/Makefile
+++ b/Makefile
@@ -157,7 +157,7 @@
 	$(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),)