diff options
author | peter <peter@FreeBSD.org> | 1998-06-01 13:58:19 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-06-01 13:58:19 +0000 |
commit | a8b0f853fa596c982d54feae8de08cc500eb517e (patch) | |
tree | 71d5dc95defa64896f3f96183957f5308235f045 /sbin/ldconfig | |
parent | 11088cd559788e9f60e8abd40b99c83027271225 (diff) | |
download | FreeBSD-src-a8b0f853fa596c982d54feae8de08cc500eb517e.zip FreeBSD-src-a8b0f853fa596c982d54feae8de08cc500eb517e.tar.gz |
Build ldconfig in /sbin environment directly, rather than under the gnu ld
directory. The rcs files were repository copied.
Diffstat (limited to 'sbin/ldconfig')
-rw-r--r-- | sbin/ldconfig/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sbin/ldconfig/Makefile b/sbin/ldconfig/Makefile index d305363..4c833f6 100644 --- a/sbin/ldconfig/Makefile +++ b/sbin/ldconfig/Makefile @@ -1,13 +1,11 @@ -# $Id: Makefile,v 1.10 1997/02/22 15:46:37 peter Exp $ +# $Id: Makefile,v 1.11 1997/06/29 21:40:54 bde Exp $ PROG= ldconfig SRCS= ldconfig.c shlib.c support.c -LDDIR?= $(.CURDIR)/.. -CFLAGS+=-I$(LDDIR) -I$(.CURDIR) -I$(LDDIR)/$(MACHINE) -NOSHARED?= yes -BINDIR= /sbin +LDDIR?= ${.CURDIR}/../../libexec/rtld-aout +CFLAGS+=-I${LDDIR} MAN8= ldconfig.8 -.PATH: $(LDDIR) $(LDDIR)/$(MACHINE) +.PATH: ${LDDIR} .include <bsd.prog.mk> |