diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-18 08:45:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-18 08:45:53 +0000 |
commit | c35cde1edbe9d3375ed880fe8bb7d0fffba2f000 (patch) | |
tree | 8eb890508a7c6f00aeaa035dbb23a687e0a4cae4 /libresolv | |
parent | 5305b3df0ac3b6970947180fa9b2fcad0b6e6364 (diff) |
Make shared libs properly list the correct ld.so in the interp
field by being sneaky.
Diffstat (limited to 'libresolv')
-rw-r--r-- | libresolv/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libresolv/Makefile b/libresolv/Makefile index 1da125a62..57c915f4e 100644 --- a/libresolv/Makefile +++ b/libresolv/Makefile @@ -51,7 +51,8 @@ $(OBJ): Makefile shared: all $(LD) $(LDFLAGS) -soname=$(LIBRESOLV_SHARED).$(MAJOR_VERSION) \ -o $(LIBRESOLV_SHARED_FULLNAME) --whole-archive $(LIBRESOLV) \ - --no-whole-archive -L$(TOPDIR)/lib -lc; + --no-whole-archive $(TOPDIR)/libc/misc/internals/interp.o \ + -L$(TOPDIR)/lib -lc; install -d $(TOPDIR)lib rm -f $(TOPDIR)lib/$(LIBRESOLV_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBRESOLV_SHARED).$(MAJOR_VERSION) install -m 644 $(LIBRESOLV_SHARED_FULLNAME) $(TOPDIR)lib; |