diff options
author | paul <paul@FreeBSD.org> | 1993-11-09 04:19:36 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1993-11-09 04:19:36 +0000 |
commit | 62cf7a7029ae90af1ea9ce16be5d9efbafa8ce17 (patch) | |
tree | a0a32c784e66fc50e42eb3f64dc3fad913ef449c /sbin/ldconfig | |
parent | 3eebdaba2a8668daaa21ec126f438aad30776fc9 (diff) | |
download | FreeBSD-src-62cf7a7029ae90af1ea9ce16be5d9efbafa8ce17.zip FreeBSD-src-62cf7a7029ae90af1ea9ce16be5d9efbafa8ce17.tar.gz |
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.
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 231fec0..e655e26 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) |