summaryrefslogtreecommitdiff
path: root/libutil/Makefile
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 /libutil/Makefile
parentb8308706e4b5035d6fd643e9f90d193ff3d91789 (diff)
Force our child libs to link vs libc
Diffstat (limited to 'libutil/Makefile')
-rw-r--r--libutil/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libutil/Makefile b/libutil/Makefile
index c1ac9022b..7210aaaa4 100644
--- a/libutil/Makefile
+++ b/libutil/Makefile
@@ -47,7 +47,7 @@ $(OBJS): %.o : %.c
shared: all
$(TARGET_CC) $(TARGET_LDFLAGS) -nostdlib -shared -o $(LIBUTIL_SHARED_FULLNAME) \
- -Wl,-soname,$(LIBUTIL_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBUTIL)
+ -Wl,-soname,$(LIBUTIL_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBUTIL) -lc
install -d $(TOPDIR)lib
rm -f $(TOPDIR)lib/$(LIBUTIL_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBUTIL_SHARED).$(MAJOR_VERSION)
install -m 644 $(LIBUTIL_SHARED_FULLNAME) $(TOPDIR)lib/;