diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
commit | 7c5db15603132b9f94a11af57c5a56b205c0eaff (patch) | |
tree | 47384a9485fd95c587188df50a275d708da17fa4 /distrib | |
parent | 8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff) |
-lcurses, not termcap/termlib
Diffstat (limited to 'distrib')
-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 0dcf6cd3c14..68b0483a76a 100644 --- a/distrib/special/ftp/Makefile +++ b/distrib/special/ftp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1997/09/17 14:19:49 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 1998/07/24 00:10:13 millert Exp $ # $NetBSD: Makefile,v 1.13 1997/08/18 10:20:13 lukem Exp $ # from: @(#)Makefile 8.2 (Berkeley) 4/3/94 @@ -18,8 +18,8 @@ SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \ MAN= .PATH: ${.CURDIR}/../../../usr.bin/ftp -LDADD+= -ltermcap -DPADD+= ${LIBTERMCAP} +LDADD+= -lcurses +DPADD+= ${LIBCURSES} #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes |