summaryrefslogtreecommitdiff
path: root/libcrypt
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-07-03 06:17:34 +0000
committerEric Andersen <andersen@codepoet.org>2001-07-03 06:17:34 +0000
commit094983cd14c21fe112a5ef09bbd347b938349e86 (patch)
tree806c84f42a79267b7d9a251a0c35bb76b45c8dc2 /libcrypt
parentb8308706e4b5035d6fd643e9f90d193ff3d91789 (diff)
Force our child libs to link vs libc
Diffstat (limited to 'libcrypt')
-rw-r--r--libcrypt/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrypt/Makefile b/libcrypt/Makefile
index 029f0d8e3..5a30ca988 100644
--- a/libcrypt/Makefile
+++ b/libcrypt/Makefile
@@ -48,7 +48,7 @@ $(OBJ): Makefile
shared: all
$(TARGET_CC) $(TARGET_LDFLAGS) -nostdlib -shared -o $(LIBCRYPT_SHARED_FULLNAME) \
- -Wl,-soname,$(LIBCRYPT_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBCRYPT)
+ -Wl,-soname,$(LIBCRYPT_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBCRYPT) -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;