diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-08-31 11:36:56 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-08-31 11:36:56 -0400 |
commit | 9ff8ed463caa86cb5e81419d8eb3bfb56e90f03c (patch) | |
tree | 68e274188e667eeded83917aa92dda34b4c4faae | |
parent | 7cc49f98a2b5346259d2209ba14d7c18959f9369 (diff) | |
download | musl-9ff8ed463caa86cb5e81419d8eb3bfb56e90f03c.tar.gz |
fix regression in creation of ldso symlink
DESTDIR was wrongly included in the symlink contents.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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),) |