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 /libcrypt/Makefile | |
parent | ebc043565b5980f3622eea0c90ef31aeac839a39 (diff) |
Depend upon libc
Diffstat (limited to 'libcrypt/Makefile')
-rw-r--r-- | libcrypt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrypt/Makefile b/libcrypt/Makefile index 9e054f055..1b24da5f8 100644 --- a/libcrypt/Makefile +++ b/libcrypt/Makefile @@ -50,7 +50,7 @@ $(OBJ): Makefile shared: all $(LD) $(LDFLAGS) -o $(LIBCRYPT_SHARED_FULLNAME) \ -soname=$(LIBCRYPT_SHARED).$(MAJOR_VERSION) \ - --whole-archive $(LIBCRYPT); + --whole-archive $(LIBCRYPT) -L$(TOPDIR)/lib -lc; install -d $(TOPDIR)lib rm -f $(TOPDIR)lib/$(LIBCRYPT_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBCRYPT_SHARED).$(MAJOR_VERSION) install -m 644 $(LIBCRYPT_SHARED_FULLNAME) $(TOPDIR)lib; |