summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authordteske <dteske@FreeBSD.org>2014-11-05 02:36:28 +0000
committerdteske <dteske@FreeBSD.org>2014-11-05 02:36:28 +0000
commitcc601efb69cd1eeeba2d0d02e50c0a0a4ba533f6 (patch)
treeb992a18542293c9a23ea0085e7f7a92fff61f132 /usr.bin
parentdd190ce5d4089c9dd705b3c0c42c19bb3ec539ce (diff)
downloadFreeBSD-src-cc601efb69cd1eeeba2d0d02e50c0a0a4ba533f6.zip
FreeBSD-src-cc601efb69cd1eeeba2d0d02e50c0a0a4ba533f6.tar.gz
Fix buildworld by adding DPADD= to libdpv [dpv(3)] Makefile
NB: Should also address `make -j' building Remove "+" from "+=" in assignments to DPADD/LDADD while here. NB: Also move CFLAGS for style measure. Reviewed by: shurd MFC after: 21 days X-MFC-to: stable/10 stable/9 X-MFC-with: 274116 274120 274121
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/dpv/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/dpv/Makefile b/usr.bin/dpv/Makefile
index 0d2217d..c5b8348 100644
--- a/usr.bin/dpv/Makefile
+++ b/usr.bin/dpv/Makefile
@@ -4,8 +4,8 @@ PROG= dpv
CFLAGS+= -I${.CURDIR}
-DPADD+= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSES} ${LIBUTIL}
-LDADD+= -ldpv -ldialog -lfigpar -lncurses -lutil
+DPADD= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSES} ${LIBUTIL}
+LDADD= -ldpv -ldialog -lfigpar -lncurses -lutil
WARNS?= 6
OpenPOWER on IntegriCloud