From 8b5f7248573b8c9fed178362936ae53311bcece4 Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Wed, 5 Nov 2014 15:32:57 +0000 Subject: [PATCH] ftp(1) uses nothing from libutil, do not link to it --- usr.bin/ftp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index 2cd7f36ebc56..3d236d8a9890 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -20,8 +20,8 @@ CFLAGS+= -DINET6 .endif CFLAGS+= -I${.CURDIR} -I${TNFTP} -LDADD= -ledit -ltermcapw -lutil -DPADD= ${LIBEDIT} ${LIBTERMCAPW} ${LIBUTIL} +LDADD= -ledit -ltermcapw +DPADD= ${LIBEDIT} ${LIBTERMCAPW} WARNS?= 2