diff options
author | 2015-11-14 21:49:16 +0000 | |
---|---|---|
committer | 2015-11-14 21:49:16 +0000 | |
commit | a11b4127b67cc60e10024e48823ca7c2ebf0bc10 (patch) | |
tree | 0cb5a00ca4d24a38264c74acbff46dbabf7353d1 | |
parent | sync (diff) | |
download | wireguard-openbsd-a11b4127b67cc60e10024e48823ca7c2ebf0bc10.tar.xz wireguard-openbsd-a11b4127b67cc60e10024e48823ca7c2ebf0bc10.zip |
The install media version does not need -lcurses; spotted by krw
-rw-r--r-- | distrib/special/ftp/Makefile | 6 |
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> |