diff options
author | Paul Richards <paul@FreeBSD.org> | 1993-11-09 04:19:36 +0000 |
---|---|---|
committer | Paul Richards <paul@FreeBSD.org> | 1993-11-09 04:19:36 +0000 |
commit | 3923b0019c438b595e77d8f73d62b37147df25f8 (patch) | |
tree | a0a32c784e66fc50e42eb3f64dc3fad913ef449c /sbin/ldconfig | |
parent | bde1866a63c583c78d524c7261239c5fa78ed03e (diff) | |
download | src-3923b0019c438b595e77d8f73d62b37147df25f8.tar.gz src-3923b0019c438b595e77d8f73d62b37147df25f8.zip |
Updated to newest ld from pk.
lib.c:
Pull in archives containing definitions needed by shared objects.
warnings.c:
Less spurious "undefined symbol" msgs for shared library defined
symbols.
ld.c:
Do a better job of recognising data in text segments, eg. `const char []'.
shlib.c,ld/rtld/{Makefile rtld.c}
Use strsep() in stead of strtok() and restore colons in eg. env. vars.
Notes
Notes:
svn path=/head/; revision=740
Diffstat (limited to 'sbin/ldconfig')
-rw-r--r-- | sbin/ldconfig/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ldconfig/Makefile b/sbin/ldconfig/Makefile index 231fec05f690..e655e2648df6 100644 --- a/sbin/ldconfig/Makefile +++ b/sbin/ldconfig/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1993/11/03 23:41:32 paul Exp $ +# $Id: Makefile,v 1.2 1993/11/03 05:20:49 cgd Exp $ PROG= ldconfig SRCS= ldconfig.c shlib.c etc.c @@ -6,7 +6,7 @@ LDDIR?= $(.CURDIR)/.. LDFLAGS += -static CFLAGS += -I$(LDDIR) -I$(.CURDIR) -I$(LDDIR)/$(MACHINE) -O BINDIR= ${DESTDIR}/sbin -MAN8 = ldconfig.8 +MAN8 = ldconfig.0 .PATH: $(LDDIR) $(LDDIR)/$(MACHINE) |