From fcb6e94f1169a127d14fc622f805b4db71b8474d Mon Sep 17 00:00:00 2001 From: peter Date: Wed, 11 Oct 2000 12:19:42 +0000 Subject: With apoligies to Greg Shapiro, fix the world. The previous commit lost -lutil and -lwrap by replacing $LDADD and $DPADD rather than appending to them with +=. --- secure/usr.sbin/sendmail/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'secure') diff --git a/secure/usr.sbin/sendmail/Makefile b/secure/usr.sbin/sendmail/Makefile index 454a633..50228c1 100644 --- a/secure/usr.sbin/sendmail/Makefile +++ b/secure/usr.sbin/sendmail/Makefile @@ -41,8 +41,8 @@ LIBSMUTILDIR!= cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR .endif LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a -DPADD= ${LIBSMUTIL} -LDADD= ${LIBSMUTIL} +DPADD+= ${LIBSMUTIL} +LDADD+= ${LIBSMUTIL} .if !defined(NOCRYPT) && !defined(NO_OPENSSL) # STARTTLS support -- cgit v1.1