diff options
author | dteske <dteske@FreeBSD.org> | 2014-11-05 02:36:28 +0000 |
---|---|---|
committer | dteske <dteske@FreeBSD.org> | 2014-11-05 02:36:28 +0000 |
commit | cc601efb69cd1eeeba2d0d02e50c0a0a4ba533f6 (patch) | |
tree | b992a18542293c9a23ea0085e7f7a92fff61f132 /lib/libdpv | |
parent | dd190ce5d4089c9dd705b3c0c42c19bb3ec539ce (diff) | |
download | FreeBSD-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 'lib/libdpv')
-rw-r--r-- | lib/libdpv/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libdpv/Makefile b/lib/libdpv/Makefile index 3ceea1b..24fb378 100644 --- a/lib/libdpv/Makefile +++ b/lib/libdpv/Makefile @@ -6,11 +6,13 @@ INCS= dpv.h MAN= dpv.3 MLINKS= dpv.3 dpv_free.3 -CFLAGS+= -I${.CURDIR} -LDFLAGS+= -ldialog -lfigpar -lncurses -lutil +DPADD= ${LIBFIGPAR} +LDADD= -ldialog -lfigpar -lncurses -lutil SRCS= dialog_util.c dialogrc.c dprompt.c dpv.c status.c util.c +CFLAGS+= -I${.CURDIR} + WARNS?= 6 .include <bsd.lib.mk> |