aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-10-11 12:19:42 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-10-11 12:19:42 +0000
commit0a69c17a487c210befa644ad24c077478596bfdb (patch)
treee933f42f3469505d58403e24d49f03c6e1528020
parentde2e7393d66a31df2f4eec9227423f5b0ab7d3f0 (diff)
downloadsrc-0a69c17a487c210befa644ad24c077478596bfdb.tar.gz
src-0a69c17a487c210befa644ad24c077478596bfdb.zip
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 +=.
Notes
Notes: svn path=/head/; revision=66977
-rw-r--r--secure/usr.sbin/sendmail/Makefile4
-rw-r--r--usr.sbin/sendmail/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/secure/usr.sbin/sendmail/Makefile b/secure/usr.sbin/sendmail/Makefile
index 454a6333c36f..50228c19e25c 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
diff --git a/usr.sbin/sendmail/Makefile b/usr.sbin/sendmail/Makefile
index 454a6333c36f..50228c19e25c 100644
--- a/usr.sbin/sendmail/Makefile
+++ b/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