summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-16 17:15:50 +0000
committerEric Andersen <andersen@codepoet.org>2002-01-16 17:15:50 +0000
commit3692b7b32e6efc810703012e6e1292c103eb7d29 (patch)
treebbd5e7fe95f5c4bc6b2682f9b0fd50c4cf0b00df /ldso
parent54fd5bd31bba892a56bebeb3bd64797a76d80336 (diff)
Oops. I forgot to add -Bdynamic to this one.
-Erik
Diffstat (limited to 'ldso')
-rw-r--r--ldso/libdl/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/libdl/Makefile b/ldso/libdl/Makefile
index dd82882bd..50339ebdf 100644
--- a/ldso/libdl/Makefile
+++ b/ldso/libdl/Makefile
@@ -52,7 +52,7 @@ $(OBJ): Makefile
shared: all
$(LD) $(LDFLAGS) -o $(LIBDL_SHARED_FULLNAME) \
-soname=$(LIBDL_SHARED).$(MAJOR_VERSION) \
- --whole-archive $(LIBDL) -L$(TOPDIR)/lib -lc;
+ --whole-archive $(LIBDL) -Bdynamic -L$(TOPDIR)/lib -lc;
install -d $(TOPDIR)lib
rm -f $(TOPDIR)lib/$(LIBDL_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBDL_SHARED).$(MAJOR_VERSION)
install -m 644 $(LIBDL_SHARED_FULLNAME) $(TOPDIR)lib;