diff options
author | ache <ache@FreeBSD.org> | 1994-10-12 02:06:02 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-10-12 02:06:02 +0000 |
commit | 9c19ce02355db653203db31139c18b8c69a9bf33 (patch) | |
tree | 19a6e1221c361c4f433bda822617f195377e415a /gnu | |
parent | e07f0c50bcee413293dd78204ca0ef1b5efb24d8 (diff) | |
download | FreeBSD-src-9c19ce02355db653203db31139c18b8c69a9bf33.zip FreeBSD-src-9c19ce02355db653203db31139c18b8c69a9bf33.tar.gz |
Add LDADD+= -ltermcap
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libreadline/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/lib/libreadline/Makefile b/gnu/lib/libreadline/Makefile index a9f6c70..87bed66 100644 --- a/gnu/lib/libreadline/Makefile +++ b/gnu/lib/libreadline/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.12 1994/06/11 15:18:01 paul Exp $ +# $Id: Makefile,v 1.13 1994/06/12 08:50:39 ache Exp $ CFLAGS+= -I${.CURDIR} -DVOID_SIGHANDLER \ @@ -11,6 +11,7 @@ SRCS+= readline.c funmap.c keymaps.c vi_mode.c parens.c \ history.c search.c tilde.c xmalloc.c HEADERS= history.h readline.h keymaps.h chardefs.h tilde.h NOMAN= noman +LDADD+= -ltermcap beforeinstall: @-if [ ! -d ${DESTDIR}/usr/include/readline ]; then \ |