From bf0b2559679a9a27b5c41ab33244c2c0911c144d Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Fri, 12 Jun 1998 10:43:18 +0000 Subject: [PATCH] Force -DFREEBSD_AOUT incase ldconfig is being compiled under elf. Without this, defines stuff for elf linking which is not what ldconfig needs. --- sbin/ldconfig/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/ldconfig/Makefile b/sbin/ldconfig/Makefile index 4c833f62bf7..840fd7fdd1c 100644 --- a/sbin/ldconfig/Makefile +++ b/sbin/ldconfig/Makefile @@ -1,9 +1,9 @@ -# $Id: Makefile,v 1.11 1997/06/29 21:40:54 bde Exp $ +# $Id: Makefile,v 1.12 1998/06/01 13:58:19 peter Exp $ PROG= ldconfig SRCS= ldconfig.c shlib.c support.c LDDIR?= ${.CURDIR}/../../libexec/rtld-aout -CFLAGS+=-I${LDDIR} +CFLAGS+=-I${LDDIR} -DFREEBSD_AOUT MAN8= ldconfig.8 .PATH: ${LDDIR}