From 9ff8ed463caa86cb5e81419d8eb3bfb56e90f03c Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 31 Aug 2013 11:36:56 -0400 Subject: fix regression in creation of ldso symlink DESTDIR was wrongly included in the symlink contents. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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),) -- cgit v1.2.1