diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-04-25 18:09:30 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-04-25 18:09:30 +0000 |
commit | 3c9c527cbc7e78d202d5d0728d462d7a92d309ad (patch) | |
tree | 026f1000815a76645e9a7b3e16b6c222ea532ab0 /games/backgammon/teachgammon/Makefile | |
parent | c616a520bfe4dbc629be53bb27a1802eb77fbfbf (diff) |
link with -ltermlib, not the old -ltermcap. Fixes a weird bug on i386
where spaces in strings would not be printed.
Diffstat (limited to 'games/backgammon/teachgammon/Makefile')
-rw-r--r-- | games/backgammon/teachgammon/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/backgammon/teachgammon/Makefile b/games/backgammon/teachgammon/Makefile index a87c26a946f..59db98d75ba 100644 --- a/games/backgammon/teachgammon/Makefile +++ b/games/backgammon/teachgammon/Makefile @@ -5,8 +5,8 @@ PROG= teachgammon CFLAGS+=-I${.CURDIR}/../common_source SRCS= allow.c board.c check.c data.c fancy.c init.c odds.c one.c save.c \ subs.c table.c teach.c ttext1.c ttext2.c tutor.c -DPADD= ${LIBTERMCAP} -LDADD= -ltermcap +DPADD= ${LIBTERMLIB} +LDADD= -ltermlib HIDEGAME=hidegame NOMAN= noman |