summaryrefslogtreecommitdiff
path: root/libutil/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-12 04:26:55 +0000
committerEric Andersen <andersen@codepoet.org>2002-01-12 04:26:55 +0000
commitc1009c8881176fbc15646fc229f5c773a0795b15 (patch)
treecd7302ef4e03d7a5f7b221db54c6b87288c757e9 /libutil/Makefile
parentebc043565b5980f3622eea0c90ef31aeac839a39 (diff)
Depend upon 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 4609086df..1ea51ef83 100644
--- a/libutil/Makefile
+++ b/libutil/Makefile
@@ -52,7 +52,7 @@ $(OBJS): %.o : %.c
shared: all
$(LD) $(LDFLAGS) -o $(LIBUTIL_SHARED_FULLNAME) \
-soname=$(LIBUTIL_SHARED).$(MAJOR_VERSION) \
- --whole-archive $(LIBUTIL);
+ --whole-archive $(LIBUTIL) -L$(TOPDIR)/lib -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/;