Use += instead of = with DPADD / LDADD.

This commit is contained in:
Dag-Erling Smørgrav 2004-01-08 09:50:56 +00:00
parent a5ac46fb04
commit e7ffa415e8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=124245

View File

@ -28,8 +28,8 @@ LDADD+= -lgssapi -lkrb5 -lasn1 -lcom_err -lmd -lroken
NOLINT= true
DPADD= ${LIBCRYPTO} ${LIBCRYPT} ${LIBZ}
LDADD= -lcrypto -lcrypt -lz
DPADD+= ${LIBCRYPTO} ${LIBCRYPT} ${LIBZ}
LDADD+= -lcrypto -lcrypt -lz
.include <bsd.lib.mk>