aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDevin Teske <dteske@FreeBSD.org>2014-11-05 20:58:25 +0000
committerDevin Teske <dteske@FreeBSD.org>2014-11-05 20:58:25 +0000
commitf5a6518ef39bc6cd37167433a55c648d1d5d2d43 (patch)
treec11f45f2ddf507bdb53d263f8949dfd777c6f526 /usr.bin
parent8a71aca501260628016e24272d9d11e9139c61c6 (diff)
downloadsrc-f5a6518ef39bc6cd37167433a55c648d1d5d2d43.tar.gz
src-f5a6518ef39bc6cd37167433a55c648d1d5d2d43.zip
Balance DPADD against LDADD for dpv(1,3).
Thanks to: ngie MFC after: 21 days X-MFC-to: stable/10 stable/9 X-MFC-with: 274116 274120 274121 274123 274144
Notes
Notes: svn path=/head/; revision=274146
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 c5b834808865..3cc18cafc468 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} ${LIBNCURSESW} ${LIBUTIL}
+LDADD= -ldpv -ldialog -lfigpar -lncursesw -lutil
WARNS?= 6