diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-12 04:26:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-12 04:26:55 +0000 |
commit | c1009c8881176fbc15646fc229f5c773a0795b15 (patch) | |
tree | cd7302ef4e03d7a5f7b221db54c6b87288c757e9 /ldso/libdl/Makefile | |
parent | ebc043565b5980f3622eea0c90ef31aeac839a39 (diff) |
Depend upon libc
Diffstat (limited to 'ldso/libdl/Makefile')
-rw-r--r-- | ldso/libdl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/libdl/Makefile b/ldso/libdl/Makefile index 97b7234a0..dd82882bd 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); + --whole-archive $(LIBDL) -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; |