From 549aba4335946c26f2701c2b43be0e6148d27c09 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 7 Aug 2012 13:19:58 +0200 Subject: Fix libpthread.so symlink * Makefile ($(inst_libdir)/libpthread.so): Symlink from absolute path $(slibdir)/libpthread.so$(libpthread.so-version) instead of relative, as both files may not be in the same directory (e.g. in Debian). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index efb486e..b6e5602 100644 --- a/Makefile +++ b/Makefile @@ -275,7 +275,7 @@ $(inst_libdir)/libpthread2_pic.a: $(inst_libdir)/libpthread_pic.a ifeq ($(IN_GLIBC),yes) $(inst_libdir)/libpthread.so: $(objpfx)libpthread.so$(libpthread.so-version) \ $(+force) - ln -sf libpthread.so$(libpthread.so-version) $@ + ln -sf $(slibdir)/libpthread.so$(libpthread.so-version) $@ libc-link.so = $(common-objpfx)libc.so -- cgit v1.2.3