summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-16 06:35:26 +0000
committerEric Andersen <andersen@codepoet.org>2002-01-16 06:35:26 +0000
commit54fd5bd31bba892a56bebeb3bd64797a76d80336 (patch)
tree5365e03bc66db6c1083b85efd276daf531b5ddc1 /libpthread
parent92fa28346ab95b8f956365b1540a8458af286697 (diff)
Tell ld explicitly when stuff is supposed to by dynamically linked
-Erik
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/Makefile b/libpthread/Makefile
index d72967e97..2fde589e5 100644
--- a/libpthread/Makefile
+++ b/libpthread/Makefile
@@ -50,7 +50,7 @@ $(OBJ): Makefile
shared: all
$(LD) $(LDFLAGS) -o $(LIBPTHREAD_SHARED_FULLNAME) \
-soname=$(LIBPTHREAD_SHARED).$(MAJOR_VERSION) \
- --whole-archive $(LIBPTHREAD) -L$(TOPDIR)/lib -lc;
+ --whole-archive $(LIBPTHREAD) -Bdynamic -L$(TOPDIR)/lib -lc;
install -d $(TOPDIR)lib
rm -f $(TOPDIR)lib/$(LIBPTHREAD_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBPTHREAD_SHARED).$(MAJOR_VERSION)
install -m 644 $(LIBPTHREAD_SHARED_FULLNAME) $(TOPDIR)lib;