From fd449ffe2985daec66aec869480c26afa0a81f78 Mon Sep 17 00:00:00 2001 From: Xin LI Date: Mon, 7 Feb 2005 05:45:38 +0000 Subject: [PATCH] Revamp several Makefile nits: - .PATH: is spelled ``.PATH: '' - Don't forget to use DPADD so ``make checkdpadd'' is not broken. - LDADD should not come with + as it's empty in the first place Suggested by: ru --- usr.bin/nc/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.bin/nc/Makefile b/usr.bin/nc/Makefile index 6ff368de569b..c274ba5265d0 100644 --- a/usr.bin/nc/Makefile +++ b/usr.bin/nc/Makefile @@ -1,11 +1,12 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../contrib/netcat +.PATH: ${.CURDIR}/../../contrib/netcat PROG= nc SRCS= netcat.c atomicio.c socks.c CFLAGS+=-DIPSEC -LDADD+= -lipsec +LDADD= -lipsec +DPADD= -lipsec .include