diff options
author | peter <peter@FreeBSD.org> | 2000-10-11 12:19:42 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-10-11 12:19:42 +0000 |
commit | fcb6e94f1169a127d14fc622f805b4db71b8474d (patch) | |
tree | 45956e2990c9060f590972eabc0ea358d48c891a /secure | |
parent | d7a5334858390fe328ad0979367fb34d9e4116da (diff) | |
download | FreeBSD-src-fcb6e94f1169a127d14fc622f805b4db71b8474d.zip FreeBSD-src-fcb6e94f1169a127d14fc622f805b4db71b8474d.tar.gz |
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 +=.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/usr.sbin/sendmail/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 |