diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 05:54:39 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 05:54:39 +0000 |
commit | 64648b6604c28f2e7f4d9152043c0efd148474d6 (patch) | |
tree | ed2e5c039efde87e1703e750926b58662fc6a740 /usr.bin/talk/Makefile | |
parent | 7e2fc8ed2758bd15f0698407d69eb61815a7a892 (diff) |
Always use -ltermlib when linking with -lcurses
Be consistent in use of LIBTERMCAP and LIBTERMLIB when depending
Diffstat (limited to 'usr.bin/talk/Makefile')
-rw-r--r-- | usr.bin/talk/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/talk/Makefile b/usr.bin/talk/Makefile index 439e3832b6a..3a28ecb382f 100644 --- a/usr.bin/talk/Makefile +++ b/usr.bin/talk/Makefile @@ -2,7 +2,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= talk -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} +DPADD= ${LIBCURSES} ${LIBTERMLIB} ${LIBCOMPAT} LDADD= -lcurses -ltermlib -lcompat SRCS= ctl.c ctl_transact.c display.c get_addrs.c get_names.c \ init_disp.c invite.c io.c look_up.c msgs.c talk.c |