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 /libpthread | |
parent | ebc043565b5980f3622eea0c90ef31aeac839a39 (diff) |
Depend upon libc
Diffstat (limited to 'libpthread')
-rw-r--r-- | libpthread/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/Makefile b/libpthread/Makefile index 28f5764a9..d72967e97 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); + --whole-archive $(LIBPTHREAD) -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; |