summaryrefslogtreecommitdiff
path: root/distrib/special/ftp
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-11-14 21:49:17 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-11-14 21:49:17 +0000
commitea58e11937d8d252af4b25562047bddb4c759ae9 (patch)
tree821931305245118de56788cd93c2b0a780ac6602 /distrib/special/ftp
parent45c74474e4a44a34f5066e6457dbc87071059112 (diff)
The install media version does not need -lcurses; spotted by krw
Diffstat (limited to 'distrib/special/ftp')
-rw-r--r--distrib/special/ftp/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/special/ftp/Makefile b/distrib/special/ftp/Makefile
index 1073a38f9a5..55d46f273c6 100644
--- a/distrib/special/ftp/Makefile
+++ b/distrib/special/ftp/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.9 2014/02/21 18:30:15 deraadt Exp $
+# $OpenBSD: Makefile,v 1.10 2015/11/14 21:49:16 deraadt Exp $
CFLAGS+=-DSMALL -DINET6
@@ -6,7 +6,7 @@ PROG= ftp
SRCS= fetch.c ftp.c main.c small.c util.c
.PATH: ${.CURDIR}/../../../usr.bin/ftp
-LDADD+= -lcurses -lutil
-DPADD+= ${LIBCURSES} ${LIBUTIL}
+LDADD+= -lutil
+DPADD+= ${LIBUTIL}
.include <bsd.prog.mk>